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

    paper_lung

    @paper_lung

    18
    Reputation
    16
    Profile views
    184
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    paper_lung Unfollow Follow

    Best posts made by paper_lung

    • 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

    Latest posts made by paper_lung

    • RE: LFO's triggering on note on

      @Oli-Ullmann Perfect, thanks!

      posted in General Questions
      P
      paper_lung
    • LFO's triggering on note on

      Hi all, been a while, so sorry in advance if this is a stupid question, but I'm looking to stop LFO's triggering when a MIDI note-on message is received. For example with an arpeggiator loaded, it's also triggering the LFO. where do I need to look?

      posted in General Questions
      P
      paper_lung
    • RE: it would be nice to have a loop xfade on the loop player

      @griffinboy did you get any further with this? :)

      posted in Feature Requests
      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: it would be nice to have a loop xfade on the loop player

      Necro bump as I'd still love to see a crossfade solution for the loop player, it would some make projects a lot less bloated - sometimes I don't need to use sampler, and a simple solution (Audio Loop Player) would be such a huge benefit.

      posted in Feature Requests
      P
      paper_lung
    • Frontend macros - display UI component?

      Hi all, I'm using the frontend macros and wondered if anyone knows if it's possible to display a UI component if a frontend macro is applied to a control? For example if Macro 1 is applied to Volume, a panel is displayed. If it isn't applied, that panel is hidden.

      posted in Scripting
      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: LoopXfade in Sampler

      @d-healey I think they may be referring to the bug that happens in the sampler import tutorial. I also posted about it here https://forum.hise.audio/topic/10073/loop-dragger-in-sample-import-tutorial?_=1725619130174

      posted in General Questions
      P
      paper_lung
    • RE: LoopXfade in Sampler

      @Mighty23 That's generally how samplers work - you need space at the start of the loop to fade into. However big that space is determines how much you can crossfade. So if it's at 0, there's nothing to crossfade.

      What's the bug you're encountering with the loop points?

      posted in General Questions
      P
      paper_lung
    • RE: LoopXfade in Sampler

      Have you tried moving the start loop point? If it's at the start there's nothing to crossfade.

      posted in General Questions
      P
      paper_lung