• Paid 3rd party DSP licensing? (Eventide, Sinevibes, Audio Damage etc.)

    12
    0 Votes
    12 Posts
    1k Views
    OrvillainO

    @Straticah This is an area I've been working towards writing stuff for. Maybe we can do a skills trade??

  • Hise Stock LFO in ScriptNode - Can't find post / Snippet

    2
    0 Votes
    2 Posts
    128 Views
    modularsamplesM

    It's part of the tutorials, under ScriptnodeHiseModules:

    https://github.com/christophhart/hise_tutorial/tree/master/ScriptnodeHiseModules

    I love this tut, so simple, but really changed how I think about LFOs. You can do some really wild things by mixing and modulating different wave shapers.

  • Issue with Custom Arpeggiator – MIDI Processor Losing Connection

    Unsolved
    2
    0 Votes
    2 Posts
    119 Views
    S

    Hi,
    I got the same problem in the past (I am not working on HISE at the moment because I don't have time) but I solved with a script.
    Pratically is the script that manage and update the ScriptProcessor SliderPacks.
    You can create an external script as Arpeggiator.js (in the Scripts folder) and in include in the Interface main script:

    include("Arpeggiator.js");

    Here the script

    // create ScriptProcessor SliderPacks array using Synth.getSliderPackProcessor(__name_of_your_script_processor__) // 0 = PitchPack // 1 = VelocityPack // 2 = LengthPack const SLIDER_PACK_PROCESSOR = Synth.getSliderPackProcessor('SyncedArpeggiator') ; const SLIDER_PACKS = [ SLIDER_PACK_PROCESSOR.getSliderPack(0), SLIDER_PACK_PROCESSOR.getSliderPack(1), SLIDER_PACK_PROCESSOR.getSliderPack(2) ]; //create your GUI SliderPacks array // **** IMPORTANT **** //!!! DO NOT SET the processorId !!! in your GUI SliderPacks const var SLIDER_PACKS_GUI = [ Content.getComponent("PitchPack"), Content.getComponent("VelocityPack"), Content.getComponent("LengthPack") ]; // create a control inline function that updates automatically the ScriptProcessor SliderPacks inline function onSliderPackControl(component, value) { local idx = SLIDER_PACKS_GUI.indexOf ( component ); for ( n = 0 ; n < component.get('sliderAmount'); n++ ) { SLIDER_PACKS[idx].setValue(n,component.getSliderValueAt(n)); } }; // set for each of the GUI SliderPack the controllCallback above (onSliderPackControl) Content.getComponent("PitchPack").setControlCallback(onSliderPackControl); Content.getComponent("VelocityPack").setControlCallback(onSliderPackControl); Content.getComponent("LengthPack").setControlCallback(onSliderPackControl);

    I hope this will help you. Contact me if you have any problem or question.

    Have a good day
    Antonio

  • Help with Degrade Parameter control settings, What do I set them as to link my knobs?

    Unsolved
    1
    0 Votes
    1 Posts
    90 Views
    No one has replied
  • Routing Matrix existential questioning and suggestions...

    15
    0 Votes
    15 Posts
    550 Views
    ustkU

    @DanH Once you get the overall latency created by your plugin, you need to report it to the DAW. It is the DAW job to compensate, but it is your job to report with Engine.setLatencySamples()

  • Confused about Exporting/Installing Expansions

    15
    0 Votes
    15 Posts
    678 Views
    bendursoB

    @d-healey Ooh, I had read that part but since I had not found that section in Hise I omitted it. I finally found it and now it works fine! Thank you :)

  • RNBO Pitch

    2
    0 Votes
    2 Posts
    163 Views
    DanHD

    @treynterrio RNBO one isn't much better. Sadly there aren't any other options at the moment afaik

  • One knob that toggles two effects on and off.

    6
    0 Votes
    6 Posts
    317 Views
    rglidesR

    @tiesvdam 👍

  • Problem clicking area's with custom preset browser

    5
    0 Votes
    5 Posts
    337 Views
    T

    @mmprod Yes i think that will fix it, i will try it today. Thanks for the help!

  • External Sidechain, I got it working

    13
    5 Votes
    13 Posts
    1k Views
    Dan KorneffD

    @HISEnberg You need to set HISE_NUM_FX_PLUGIN_CHANNELS to the amount of audio channels + sidechain channels.

  • Any chance of creating these sliders in LAF?!

    9
    0 Votes
    9 Posts
    170 Views
    DanHD

    @HISEnberg Yup that's what I'm doing currently!

  • 0 Votes
    1 Posts
    94 Views
    No one has replied
  • Recording MIDI internal notes

    11
    0 Votes
    11 Posts
    443 Views
    hisefiloH

    Engine.getUptime was the problem. This one below works.

    HiseSnippet 2144.3oc4Y80baabDGPRHIjIQIYlL8k9xE8DTrJLokLkT8zwRhTJR0V+IBRJJSmVMPfG.QD3cvGNHaZO9qQ+nzm6zOA8w9wveCZ28N.R.QZYNJMcTa4XKIr+41c+s6s2dfGI39zzTtvvr9ICRnFlelk6.lrW6ddQLi85XX9qs78RjYB5AbIM8hrT4UWvnu7hFNMM1ZPhWZJsqgo4reGpfYs4LTed2S2xK1i4SGQxv3LdjO84Q8ijindzFOKJNdGutzSh5WR5U1XOeNqMOlmAN2rVMLR77uxKjdfGJ1LVF65k1yv7asZ73VT5pKGzsq2xK2sUqVqu15qrdSufFq3cYyVquxiVY0Gs1pAFlez1cijbgqzChDCy41h2cfaO9KYZCbVTZzkwT7glFtfk0j2gG2ECQjpQ6dQwcOp.0RMLLsNZDFNqFC+Zq8i5FMj9Hr7KULHiznL.ZNSU2a1JtWyxtWiRt2DboYK4RebQZU4RwdCnBkqLu0960YOhlR0LY6LgfxjtzWjQqjAe2SyYch.xEko+bNOYalG3dcKSFW8KAQcSnUYXN6TGqMu0X0.CqchhoXbaV7.HMFiPQRGOomg4arVaMG1Isd1Zs6c5Z643z6TQmKctLriSu0dvCV+jSZ8ia9SmGt+flO9zffC+8thceF0k17jCudyiW87v04u9kWsdnfdkeauf3ya88mEF+CsNL9X2K4qDJV4zlu90x1as9yNe2PmfyWc4WQOd2vsbbLP+YXMqoIVk6FEx7vsTPI4AY82xChjRfyA79Q.eL6UP7q2nCkMN4ubCD3APTHKuOSmMp.3mP6mvGQ3OsgQoZj4z0HekkquHJQNhCBhep0dLIUD3AUBkqRzxZX92rZyAAXRm9dWQ2Q.OLTA6VMZrDA9whOod8fLluLhyHbF1J4Pl8h0eS8Z0eacxMYEDLQdngD73XpXhrQnUbaJZyx5eIUrD4Zu3L5PAA.nZ0n0zUM5qi6RBxY6whjGlPYuu1EF4fE7Wmtmp3DvxbZfbITgLBcAyNzqglk5DSMqNzzqj7DioNqU25XpOWzkJlTRaFqZVf2mJIZoH+NRQRzqa2sxjRNydAMuEVhzrA9eLGFwhiXzxPqVnB.1mCkYLXcJiwCI5jRk1KHouRtPNexSIK3BAVteDwBWf7aIEVFrXMIteAKvAebaVHXcmPp7zDjtMJP8ZQAD6bqUCLWMrqCZpyPZ1AdwoTTPMc+ddrPZWkpustV4uoP6ZfVi5Shx7VHn0dCth4gYau3Xrsl8MBeDgzvJt.SFTQNHj93aASQY94hnJbTYLLRKXg87ya46j.+1twhfbkolB5Zi9E.NE.43gcIODCg5BZHoblpwSTjDEYUfze3OBB9vGR9Npj3AbBnB7zEhjSj8nJefjnbBmbPrjaA5qFKAy8kRPKT9LrETdxMQS.5wVJ1wQo.DhYeFMdIBCnMra.Ml6GIGrDIgmFgZgfLA9.z8hI8GU54KnPKh8g8YvjH6hCFnpRPY6iHEtkztuit+VYFHkCT1ydjoKKvY4Ngcg2TlYasaam69UrHf5oRu9I1i1c3BOBmHtCWrOLaUjKjEXcSsKhNx2BUdPO47koTjxmpHkOLR4N4sqKy41BU96OZd3Cqg0AwTVnrGgGnpJvEfXGwHo5PZwkH8f5Fk+2Okzjjphskfz7OASlhESCfAFIwQWAUcokBs70sbSj2CLovlxQ5cGgIOH2tUfZnRzIIKsmc+bxinv0a7FqJ9F8kvd.pFWC2f4jaGnGlfBiVvTcFqrwlJwQQrW.5THEYT8OwlCZ.Rlp22BpEvEDaJAf8gqOtvnEoNQoCOhFIVSomBTFAT59x508EWB722C165SihKggeeFzqfJ1BpyPfLGRskoKt3XNutZz9EWtDYEnu43BDDCvWd05yA3zdjm+j7.5pwBHnCVJOl5jHhXR6qb5lg9NpvHb0Ol5oOInt9y6YLFU5H2A.LZS3b7fH+HuXEL8lb36axOKIr3zIEF9l5HPN5XFMqhzyPNkO5BN6pF.A0FZwPFWP29Z3LgQJpS.LVQBP3w5BylASkACkspRD3eEcHGFyKQJV0vQaVgcdLFdjEn63mCS9MiZ+u3SvEV2tNesAPpYI8anO78+SG7yblbuBDUpFga97Q3zyHXDAip8I4yuYn73xC2aLEZ+QV39hBcsLU5cWl2D807QM.v5C6suBsVcvXCJ9CioZAxcXk5+4JpO9.uvkn4cyhwaBU9l036eHmAj6qL0KdeDFzYdPkqf9uqqaOst3WYcTjzu2j8wYlfOhkJ+B3i4ujhO2Z6f.pubjCNm0Nm+Kyajnr4mWa9O0xE5gn5RnL9uR8L4G7tlBiHxnBD7ts2vzeeZeCSIS8aX5PeIX9Sf1jovI4UdwGtz9Qm.kwoks1oov8cou3XLaVldaNbi9Iw5cOcGHHmnNt3KDPUVrYedFqx84u4aKYtoqM0G3EWM28tWb0+ErY2zrjO9EZe7is1b2NtGmuIW82vQj3b7IzpUv6yY7jdbVje4z6wToHJLjJJ6wSLL1TJg6e0NSbckp9NTe35X2jpV3wo7bJ3ZkIiS2O1xMjv+3urgKLZck8d+3e8XJLWTZkcSa6ygTB8NB629q4qxaY81JM9bKcPRT60u+cHv7E9mNKb+yA+LKU5+9J98EV4Ei2aAv4sx2abeEBu04Pl8+smC4XdlDtgCbaHQDNr4AY8cgi+8o4WyAuCf4L3Q35maTL8rKk0U8v+D9jyrI9rYNylEL+OhM564K3W3quI.1e7STTf3lo9pFpYsO9Lo432enObP9E99UWpwT7Q2UEW9tp3J2UEe7cUwV2UEW8tp3ZeXEw4r1LSx6q2ZZXr+Qaq+RrLG9ErYNqw+BzCBbcE
  • Add Expansion Sample Maps to ComboBox

    6
    0 Votes
    6 Posts
    294 Views
    d.healeyD

    @marcrex Looks like you're just hardcoding everything currently. You need to instead use the expansion handler to give you a list of installed expansions, loop over those and grab the bits of data you need in order to populate the combo box.

  • Polyphonic Aftertouch?

    38
    0 Votes
    38 Posts
    2k Views
    MorphoiceM

    @Lindon no worries.

  • Software for Animation Sprites....

    42
    0 Votes
    42 Posts
    10k Views
    OrvillainO

    @Chazrox No problem!

  • double notes get stuck

    3
    0 Votes
    3 Posts
    177 Views
    SimonS

    @Morphoice The solution I used was to keep track of all note on events, then if you ever receive two note ons in a row on the same note you know you've received some illegal MIDI.

    It's pretty easy if on noteOn you check and store the event ID to an array (or MIDIlist I suppose) like

    onNoteOn { if (events[Message.getNoteNumber()]){ Console.print(You've just received some illegal MIDI!); } else { events[Message.getNoteNumber()] = Message.getEventId(); } } onRelease { events[Message.getNoteNumber()] = undefined; }

    How you handle the lawbreakers is up to you, but at a minimum it's best to stop everything on that note, as this situation breaks the assumption that every note on will have a corresponding note off.

    In my case I'm using artificial events, so stopping them all is easy. I don't actually know how you'd go about stopping the normal events.

    Give Synth.allNotesOff() a try, I know that doesn't affect notes with a timestamp in the future but I assume it works on stuck regular events.

    It would be nice if we got this built in similar to setfixnoteonafternoteoff

  • Including .JS files in new projects.

    9
    0 Votes
    9 Posts
    149 Views
    d.healeyD

    @Chazrox Yes, in the folder name in the file path, not the file itself.

  • The worlds most annoying bug

    14
    1 Votes
    14 Posts
    814 Views
    C

    @iamlamprey This is very strange, and I imagine very frustrating. Perhaps @Christoph-Hart has an idea.

  • FFT display crashes & waveform range adjustment

    16
    1 Votes
    16 Posts
    1k Views
    Adam_GA

    you guys are the best :D @ustk @clevername27

26

Online

2.0k

Users

12.7k

Topics

110.1k

Posts