HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tags
    3. scripting
    Log in to post
    • All categories
    • R

      Granulator audio file

      Watching Ignoring Scheduled Pinned Locked Moved General Questions granulator audio file scripting
      11
      0 Votes
      11 Posts
      310 Views
      R

      @Lindon I just found this thread which seems to be exactly what I am looking for.

      Link Preview Image AudioLoop Player/Granulator File Handling

      @Adam_G my example is using a script FX module ;) EDIT: Nope sorry it's in a Scriptnode Synth, but it should work the same way with a script FX, the essentia...

      favicon

      Forum (forum.hise.audio)

      I shall try this out when I get home but from reading it through it looks like it should give me enough to get to where I need to get to and build from there.

    • A

      Sustain Pedal Question

      Watching Ignoring Scheduled Pinned Locked Moved Scripting sustain pedal scripting basic
      15
      0 Votes
      15 Posts
      694 Views
      d.healeyD

      @ATWAW said in Sustain Pedal Question:

      What function would I use to turn on a sustain pedal via a button on the interface,

      If you're only using the sustain pedal for standard sustain pedal sustaining, then you just need to send a CC64 message.

      In the button's callback you could use.

      Synth.sendController(64, component.getValue() == 0 ? 1 : 80);

    • R

      Set sample length via script

      Watching Ignoring Scheduled Pinned Locked Moved General Questions sampleend sample length scripting
      10
      0 Votes
      10 Posts
      731 Views
      d.healeyD

      @rzrsharpeprod said in Set sample length via script:

      Or did you mean for the reverse samplemap? That would work for that definitely.

      Yes this. One sample map forward, one reversed. Auto trim the reversed one, two minutes of work.

      Is it possible to do it via script or was I chasing an impossible task from the offset?

      Yes it's possible, but it seems like more effort than it's worth.

    • trillbillyT

      Display Value Rounding

      Watching Ignoring Scheduled Pinned Locked Moved General Questions label display value scripting
      8
      0 Votes
      8 Posts
      422 Views
      trillbillyT

      @Natan Thanks! I got it, I was just blanking for a bit.