HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. tsempire
    3. Topics
    • Profile
    • Following 1
    • Followers 0
    • Topics 22
    • Posts 135
    • Groups 0

    Topics

    • tsempireT

      Legato 2025

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      1 Votes
      2 Posts
      81 Views
      CatABCC

      This is a sample I recorded myself, I hope it can help you, the instrument is the Erhu from China.

      Sample

    • tsempireT

      Midi Player Liste Browser

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      144 Views
      ustkU

      @tsempire this thread as some info about this, but it's quite specific with no real snippet example https://forum.hise.audio/topic/1146/viewport/22?_=1736869127339

      here's a very basic use of viewport
      https://forum.hise.audio/topic/2541/viewport-item-text?_=1736869127349

    • tsempireT

      Windows installation

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      181 Views
      tsempireT

      @d-healey said in Windows installation:

      convolution

      no I don't use convolution, but I'm testing an export with HISE, bug

    • tsempireT

      Faust error ( DSP )

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      165 Views
      tsempireT

      @bendurso Thank you very much, I understood its function.

    • tsempireT

      Portamento ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      384 Views
      DanHD

      @tsempire comme ça peut être

      Link Preview Image Synthetic Legato

      A synthetic legato script that includes automatic chord detection, has the ability to play formant correct glides, and includes an auto-trill feature. The co...

      favicon

      Forum (forum.hise.audio)

    • tsempireT

      Vu meter ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      587 Views
      tsempireT

      @orange

      Thank you very much ^^

      Capture d’écran 15-01-2024 20.43.12.png

    • tsempireT

      button, window with effect

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      311 Views
      FatMitchellF

      @ustk epic example. thank you.

    • tsempireT

      spectrum analyzer EQ

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      879 Views
      d.healeyD

      @Lindon Oops, you're right. I'll update my post.

      @DanH I didn't know about this, thanks!

    • tsempireT

      Mono, Legato, poly

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      874 Views
      DabDabD

      @tsempire said in Mono, Legato, poly:

      @DabDab and also for the GLIDE how to do it?

      This thread may be useful for you..
      https://forum.hise.audio/topic/6059/polyphonic-glide-on-sampler/9?_=1698318659816

    • tsempireT

      Pitch Wheel Modulator1 HELP

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      537 Views
      tsempireT

      @ulrik perfect it works thank you

    • tsempireT

      PLAY et STOP " Midi Player 1 "

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      21
      0 Votes
      21 Posts
      1k Views
      tsempireT

      @tsempire I'll give the solution to those who need it.

      Copy this code:

      // Get a reference to the MIDI processor as MIDI player
      const MIDIplayer = Synth.getMidiProcessor("MIDI Player1").asMidiPlayer();

      // Get a reference to the transport buttons
      const grpTranportBtn = [Content.getComponent("btnPlay"),
      Content.getComponent("btnStop")];
      for(b in grpTranportBtn)
      {
      // Make sure the buttons are not saved with the presets
      b.set("saveInPreset", false);

      // Assign the control callback to the transport buttons b.setControlCallback(onTransportBtnControl);

      }

      // Also set the STOP button to be momentary
      grpTranportBtn[1].set("isMomentary", true);

      inline function onTransportBtnControl(component, value)
      {
      // get which button triggered the callback
      local index = grpTranportBtn.indexOf(component);

      // If it's the PLAY button if(index == 0) { // if the PLAY button is pressed if(value) { // start playing MIDIplayer.play(0); } else { // keep the button's value to 1 if it's still playing grpTranportBtn[0].setValue(1); } } // if it's the STOP button else { // only react if the mouse is clicked (not released) if(!value) return; // stop playing MIDIplayer.stop(0); // set the PLAY button's value to 0 grpTranportBtn[0].setValue(0); }

      };

      // on compilation, reset the playhead position to the beginning
      // comment it out if not needed
      MIDIplayer.setPlaybackPosition(0.0);

      Create 2 buttons with the ID

      btnPlay

      btnStop