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

    paper_lung

    @paper_lung

    20
    Reputation
    19
    Profile views
    194
    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: Feature Request: Crossfade in Audio Loop Player

      @dannytaurus I know some people recommend using the 'sample import tutorial' but it adds so much more overhead, plus the project is really buggy.

      posted in Feature Requests
      P
      paper_lung
    • RE: Feature Request: Crossfade in Audio Loop Player

      @Chazrox Just single sample import for users, which Audio Loop Player is perfect for. It pretty much works perfectly except for missing a crossfade feature so you can crossfade the loop. Otherwise you just get clicks and pops.

      posted in Feature Requests
      P
      paper_lung
    • Feature Request: Crossfade in Audio Loop Player

      I have some projects where the audio loop player is a much easier fit, especially when I don't need a fully featured multi-sampler. The only feature it's missing is a simple crossfade function - it would make it a lot more useable.

      posted in Feature Requests
      P
      paper_lung
    • RE: Fill all audio loop players?

      @d-healey ah that's perfect, thanks a ton for the help.

      posted in General Questions
      P
      paper_lung
    • RE: Fill all audio loop players?

      just bumping this as I'm still unsure how to do it - essentially I just want to drop a sample and it loads within all x4 audio loop players

      posted in General Questions
      P
      paper_lung
    • Fill all audio loop players?

      Hi all, does anyone know of a way to drag and drop a sound onto a panel, but it imports the sample into x4 audio loop players? I'm looking for a way to do this so a user doesn't have to import it 4 times.

      posted in General Questions
      P
      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