@Straticah Yup the table editor needs a big upgrade imo.
Posts
-
RE: Snap to grid for custom curves
-
RE: HISE Meet Up
@d-healey Perhaps areas where Hise can be brought up-to-date / in line with current plugins.
For example the ADHSR envelope and the Table editors could really use updating.
Perhaps the Wavetable Synth / Waveform Generator?
-
RE: Pitch Shift Module?
@Morphoice yes it's good for modulation stuff, but not there for musical pitch shifting I don't think.
Going to give the RNBO one a go I think...
-
RE: Re-Order FX
@ulrik ah cool. Had a quick look already on RNBO but cldn't see it?
@clumsybear had a go at one in Snex. Seems rather cpu heavy!
https://forum.hise.audio/topic/1835/frequency-shifter/28?_=1736879834487
-
RE: Re-Order FX
@ulrik good thread here with a link to a c++ library to get started
-
RE: Seeking Help with Glide/Slide Effect Implementation in ScriptNodeFX
@filipalex96 hmmmmm... not sure I can help here. Perhaps @Christoph-Hart can advise whether it's possible or not...
-
RE: Pitch Shift Module?
@Morphoice using the one I posted above? Or do you have something else....?
-
RE: Pitch Shift Module?
@Darkmax204 go here: https://faustide.grame.fr/
Look in examples for Pitch Shifter.
here's the code:
import("stdfaust.lib"); pitchshifter = vgroup("Pitch Shifter", ef.transpose( hslider("window (samples)", 1000, 50, 10000, 1), hslider("xfade (samples)", 10, 1, 10000, 1), hslider("shift (semitones) ", 0, -12, +12, 0.1) ) ); process = pitchshifter;
-
RE: Pitch Shift Module?
@Darkmax204 I can't remember where the faust one is but it's in the forum somewhere. Keep digging!
-
RE: Re-Order FX
@ulrik out of interest how does your FreqShifter work? I'm about to look into creating one of those...
-
RE: Seeking Help with Glide/Slide Effect Implementation in ScriptNodeFX
@filipalex96 said in Seeking Help with Glide/Slide Effect Implementation in ScriptNodeFX:
I saw something similar to glide in the bufferstop example
where is this?
-
RE: Pitch Shift Module?
@Darkmax204 the only option at the moment is the not very good faust pitch shifter. Oh actually there's an even worse one in the Hise tutorial folder which can be downloaded from @Christoph-Hart 's github.
I think many of us would benefit from a good-sounding pitch shifting algo. If we can find someone to implement such a thing I'd be happy to contribute financially...
-
RE: Seeking Help with Glide/Slide Effect Implementation in ScriptNodeFX
@filipalex96 I don't know about glide in ScriptNode.... but I do know that AI chat bots won't get you very far with Hise scripting (yet).
Consider the forum a slower version of Chat GBT! At least you will get the correct code (normally!) and even some examples if you're lucky.
If you use the Waveform Generator for your synth, and search the forum for a glide script, and instructions on how to implement it, then you will find many threads. Pretty sure this was mentioned just last week.
-
RE: Re-Order FX
@ulrik I see it in other VSTs, so yes! But I don't know how... And it probably needs @Christoph-Hart to implement it into Hise...
-
RE: Automation subfolders in DAW
@DanH Digging this back up as would be a lovely addition going forward @Christoph-Hart
Too many vsts have a chaotic automation list.
-
RE: Re-Order FX
@ulrik Thanks! This looks pretty much what I'm looking to do. How do you handle automation lane creation / naming?
-
RE: Aftertouch?
@Morphoice good luck, you'll definitely need it for that emu! It wasn't worth it for me as my instrument wouldn't massively benefit from it. I'd be interested to see how you implement it though.