HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. paper_lung
    3. Best
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 68
    • Posts 184
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Loop Player Root Note

      I managed to remove the root note pitch detection, thanks for the tips everyone. For anyone interested, I commented out the following code in the AudioLooper.cpp file within the source files:

      /*if (copy.getNumSamples() > 0)
      	{
      		auto freq = PitchDetection::detectPitch(copy, 0, copy.getNumSamples(), sr);
      		
      		if (freq == 0.0)
      			return;
      
      		Array<Range<double>> freqRanges;
      
      		freqRanges.add(Range<double>(0, MidiMessage::getMidiNoteInHertz(1) / 2));
      
      		for (int i = 1; i < 126; i++)
      		{
      			const double thisPitch = MidiMessage::getMidiNoteInHertz(i);
      			const double nextPitch = MidiMessage::getMidiNoteInHertz(i + 1);
      			const double prevPitch = MidiMessage::getMidiNoteInHertz(i - 1);
      
      			const double lowerLimit = thisPitch - (thisPitch - prevPitch) * 0.5;
      			const double upperLimit = thisPitch + (nextPitch - thisPitch) * 0.5;
      
      			freqRanges.add(Range<double>(lowerLimit, upperLimit));
      		}
      
      		for (int j = 0; j < freqRanges.size(); j++)
      		{
      			if (freqRanges[j].contains(freq))
      			{
      				setAttribute(AudioLooper::SpecialParameters::RootNote, (float)(j), sendNotification);
      				return;
      			}
      		}
      	} */
      

      I've not fully tested it yet, but hopefully proves useful to someone.

      posted in Scripting
      P
      paper_lung
    • Slower modulation.

      I find the LFO modulators to be quite fast - the lowest rate is 0.50hz. It would be really nice to be able to have these set to slower rates, if possible. Ableton modulators for example can go all the way down to 0.1hz.

      posted in Feature Requests
      P
      paper_lung
    • Install samples dialog - LAF

      Hi all, does anyone know how to amend the sample install LAF? I've got numerous other LAF functions within my script but unsure which one is affecting this dialog and how to edit it directly.

      Screenshot 2024-02-26 at 15.50.13.png

      posted in Scripting
      P
      paper_lung
    • RE: Faust not enabled

      Went to a previous version of Faust and it's working, all good!

      posted in Faust Development
      P
      paper_lung
    • RE: LFO's triggering on note on

      @Oli-Ullmann Perfect, thanks!

      posted in General Questions
      P
      paper_lung
    • RE: has anyone tried using the pulse downloader for storage and delivering their sample based instruments /products?

      @jeffd my recommendation is to use Gumroad just to get started. I did this before moving onto Shopify, then Wordpress/woocommerce. Gumroad doesn't cost you anything to get going and makes it easy. You can learn things about web-dev as you grow - that's what I did. You can embed Gumroad products on a website of your choosing if you want, as well.

      posted in General Questions
      P
      paper_lung
    • RE: Sample Import Tutorial - It's Broken!

      @Lindon said in Sample Import Tutorial - It's Broken!:

      @griffinboy said in Sample Import Tutorial - It's Broken!:

      @Christoph-Hart
      Thanks for the response, I was hoping to tap into the sampler to make use of the disk streaming and other fancy optimisations, but you are right.
      A custom solution will allow for much more direct control over the buffer(s), which will probably be much more beneficial in the long run.

      But actually @Christoph-Hart - getting the loop points to work correctly is something I'm really going to need in an up-coming project so sorting this to be consistent would eb a win for me.

      +1 - I would love to make use of the tutorial project for this as well. as an alternative, adding a crossfade function to the audio loop player would be a great solution

      posted in General Questions
      P
      paper_lung
    • RE: Matrix peak meter - vertical?

      @d-healey Haha, well that was easy. I just didn't change it enough to see the change, thanks!

      posted in General Questions
      P
      paper_lung
    • RE: Cross fade for Audio Loop Player?

      @BWSounds That text can be altered by editing the source files. I can't remember where it is, but look for the 'drop audio file or right click to open browser', then edit that string. You'll need to recompile Hise once you've done that.

      posted in General Questions
      P
      paper_lung
    • RE: Remove macros from frontend?

      Ah, fixed it - for anyone curious, I just removed any strings from the setFrontendMacros array and they no longer show

      Engine.setFrontendMacros([]);
      
      posted in General Questions
      P
      paper_lung
    • RE: Sliderpack MIDI control / plugin parameter

      This worked for me:

      inline function onKnob1Control(component, value)
      {
      	YourSliderPack.setSliderAtIndex(0, value);
      };
      
      Content.getComponent("Knob1").setControlCallback(onKnob1Control);
      
      posted in General Questions
      P
      paper_lung
    • RE: Updating plugins

      @orange Ah that's great, thanks so much for the info. I'm using Packages & Inno, so that's good to know they'll replace them automatically. Thanks again.

      posted in General Questions
      P
      paper_lung
    • RE: Label - display parameters & display on hover

      @d-healey I don't suppose you have any examples of that knob I could check out? That's exactly the kind of thing I'm hoping to achieve. I've managed to get a LAF knob working, but struggling with the text.

      posted in General Questions
      P
      paper_lung
    • Button to set FX value to 0, then back to 100?

      Hi all, I'm trying to add some functionality that when a button is clicked, it sets the value of an FX parameter to 0, than after a second or so, sets it back to 100. I think I'd use a timer to do this, but I'm new to this part of Hise. Any recommendations on how to achieve this?

      posted in Scripting
      P
      paper_lung
    • RE: LFO Animation not visible inside compiled plugin

      @Oli-Ullmann said in LFO Animation not visible inside compiled plugin:

      "ENABLE_ALL_PEAK_METERS=1"

      Thanks, I'll give that a try!

      posted in Scripting
      P
      paper_lung