@Sampletekk Not normal...
Posts
-
RE: template or tutorial for custom c++ scriptnode?
@Morphoice Nice you move fast!
-
RE: Wrapping Oscillator in Soft Bypass within Clone Container = Crash
@aaronventure Yes that is nifty solution. My issue I have narrowed down to the tempo sync node actually, seems to not want to compile inside and outside the clone node. I might be routing it incorrectly and need to test it a bit further.
-
RE: template or tutorial for custom c++ scriptnode?
@Morphoice @griffinboy has put together a neat tutorial for c++ nodes for if/when you are interested
https://forum.hise.audio/topic/10591/tutorial-how-to-create-a-c-custom-node?_=1733752760689 -
RE: Wrapping Oscillator in Soft Bypass within Clone Container = Crash
@Casmat Did you ever solve this? I started constructing a similar project but there is no soft bypass. I think it perhaps has something to do with the modulation signals but I haven't debugged further.
-
RE: Why does this error occurs? (Weird Knob Stepsize)
@Gab I have encountered this a number of times with Faust nodes, I think there is a discrepancy with the values Faust uses and those used by HISE.
@ustk suggestion was the solution for me, use
Engine.doubleToString()
-
RE: Next HISE Developer Hang
@clevername27 can you repost the link and time for the meeting here?
-
RE: RNBO optimization/best practice
@mmprod I think @clevername27 is referring to @Phelan-Kane , he's posted a couple of videos on RNBO/HISE.
-
RE: Script Fx Based projects not working in DAWs
@Straticah Hmm the only difference in your method seems to be removing the scriptnode network. I don't think this is necessary and not something I usually do.
Typically, if you recompile the networks, they should overwrite any existing .cpp and .h files. I don't think this was necessarily my issue though as I was generating new projects with new, simple scriptnode networks and experiencing the same crashes. Interesting idea however, I will remove the .xml network and see if it makes a difference. -
RE: LinnDrum clone: great success, thanks guys!
@Morphoice Well done, its sounding great!
-
RE: thoughts on using max/msp RNBO vs Faust
@clevername27 just to chime in, I find a lot of RNBO to be rather underdeveloped (missing value parts of max map) or overly cpu intensive to what can be done with Faust or C++. That being said, I love gen~ and find it very powerful and efficient, and you can wrap gen objects in RNBO. This is almost strictly what I use it for, though I've never been clear about what happens to the gen object when it is wrapped this way.
-
RE: Next HISE Developer Hang
@griffinboy Yes please if you have a C++ script you are willing to share that would be amazing!
-
RE: Scriptnode chaining 2 Soft Bypass ain't soft
@aaronventure I have never heard of this either! How do you set the branch index of the branch node?
-
RE: Next HISE Developer Hang
@clevername27 Thank you for arranging this!
A few topic recommendations:
- @ustk put together a great snippet for an audio buffer within scriptnode. I am still exploring for a way to create a ring buffer, so if someone has suggestions I am all ears.
- Dynamic Component : I've seen Christoph has been slowly working on this behind the scenes but I would love to see any further updates on this. Essentially it is a way to add/destroy components to the UI dynamically. This ties in to any future updates he is working with.
- Package Installers discussion. @clevername27 I would like to see more of this as well as @Lindon 's method.
- Graphics: A rundown of what graphics processing are truly available in HISE (CSS, HISE LAF, Webview, OpenGL, etc.)
- Loris: I am super interested in this library but haven't begun to use it so if someone has a project to share on this that would be great
I am also upvoting the broadcasters discussion. I use them but not to their full potential. The AI node would also be super cool. :)
Lastly, just a note. I have always struggled sharing HISE audio via ZOOM. I am not sure if this is a universal problem but it could prove to be an issue for the HISE meetup. Something to keep in mind.
-
RE: Whitebox Package Script Update?
@d-healey Thank you very much for sharing this, you are too kind.
-
RE: All Hail Package Builder
@clevername27 Incredible, between this and @d-healey 's script I think I can finally spend time with my family this christmas!
-
Whitebox Package Script Update?
Hey @d-healey
I am just familiarizing myself with your game changer video on the script for exporting the plugin and packaging/codesign/notarize/staple the product.
I just noticed that it uses atool for the codesigning, are you still running this? I've always had to use notarytool and was wondering if you have an updated script for it?
Also I don't see a license for this, is it free to use or do you have it as GPL? :)
Fantastic work on this by the way I can't thank you enough.
-
RE: Scriptnode FX Plugin does not load outside of HISE
Oh and don't include spaces or special characters in the scriptnode network for the macro controls. For sure you will have an issue from the macro knob being named "dry wet".
-
RE: Scriptnode FX Plugin does not load outside of HISE
@tonymontana Use the HardcodedMasterFx module for now, the ScriptFx seems to be broken at the moment in compiled projects.
I posted about it here:
https://forum.hise.audio/topic/11201/script-fx-based-projects-not-working-in-daws -
RE: Retro 80s Tape Wow & Flutter with faust
@Morphoice That reflects my use case as well, I am more interested in experimenting with (and pushing) the potentials of tape styled-modulation.
I agree with you that the saturation element is queue here, I will let you know if I make any headway with the hysteresis (though I remember reading its full implementation is super CPU intensive).
I suppose a nifty feature to explore could be tape startup, rewind, and different tape speeds.