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

    paper_lung

    @paper_lung

    18
    Reputation
    17
    Profile views
    188
    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: Hise keeps asking for documents access (Mac)

      Yeah neither of those things worked unfortunately. no idea wtf is going on. I opened/reinstalled an older version of Hise (3.6.2) that I used to use and there's no issues there. If I try anything recent it just keeps coming up with that prompt.

      posted in Bug Reports
      P
      paper_lung
    • RE: Hise keeps asking for documents access (Mac)

      @Lindon It's just in my Documents folder.

      posted in Bug Reports
      P
      paper_lung
    • RE: Hise keeps asking for documents access (Mac)

      @d-healey just updated to the latest version and it's still doing it. Interestingly, the Projucer also popped up with the same prompt and took 10+ confirmations before it went away.

      posted in Bug Reports
      P
      paper_lung
    • Hise keeps asking for documents access (Mac)

      I'm having an issue where when I open Hise, it continuously asks for documents access. I have to keep clicking 'Ok' around 10 times before it goes away, but then it asks every 5 minutes or so. Has anyone else had this issue? I'm on Mac, 12.5.1. Hise 4.0.

      Screenshot 2025-06-06 at 10.55.38.png

      posted in Bug Reports
      P
      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