HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Eskano
    3. Topics
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 34
    • Groups 0

    Topics

    • E

      Midi Fx plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      683 Views
      lalalandsynthL

      @Christoph-Hart We only need MIDI , no audio , so can it be done via the MIDI fx plugin ?

      What we need is to send a sysex stream for settings , LFO as CC and MIDI note as trigger.

      Maybe @jonhallur can chime in here as he is the one doing the programming and has got the Standalone working.

    • E

      What file is onInit code stored in?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      344 Views
      ustkU

      @d-healey Sorry I made a shortcut to quickly...

    • E

      Rewrite batch file vs don't rewrite batch file

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      231 Views
      d.healeyD

      It makes no difference unless you've made manual changes to the batch file and you don't want HISE to overwrite them.

    • E

      Add a one time pop up message

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      821 Views
      ustkU

      @Eskano Of course, just add a button into the panel, and in the button callback, just use Panel.showControl(false);

      Well, if you look at the code, you can see that the panel is showing after 3 sec, then the timer stops in its own callback, hence will not popup again if you close it. (unless you tell him to do so in the close button callback...)
      By instance, do you mean plugin or panel instance?
      The panel will show again after 3 sec when you relaunch the plugin. If you want it to appear only once when you launch the plugin for the first time and not after that, you'll need to store a flag in an external file using dumpAsJSON/loadFromJSON.

      @TNTHM For this, you need to combine what I explained above with: https://forum.hise.audio/topic/1204/simple-copy-protection-done-right

    • E

      Benefits of enabling "VST3 Support" in Settings

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      549 Views
      LindonL

      @d-healey said in Benefits of enabling "VST3 Support" in Settings:

      @Eskano

      Can you legally release vst2 plugins for free without a license from Steinberg?

      I'm not 100% sure of the rules. Christoph has a license for VST2 so I think you're okay as long as you're not redistributing the SDK but I could be wrong.

      If you're making a non-proprietary plugin then there is also the option of using the GNU GPL licensed alternative - https://git.iem.at/zmoelnig/FST

      I think the answer is "no". You will need to enter a company code in your plug-in setting/preferences in HISE - this is the code issued to you by Steinberg when you got your VST2 license.

      VST2 does not have any sort of open source license, it's entirely proprietary, to issue (sell, give away, distribute) a VST2 plugin you need a license from Steinberg - or that was how I read the license agreement when I got it, but as I say it was a while ago now.

    • E

      Set plugins to default to wet=100% when instance is opened on bus

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      540 Views
      Dan KorneffD

      Could you make 2 versions of the plugin? Like plugin(aux) and plugin(insert)
      Or maybe just make a button on the interface to set the functionality

    • E

      Autotune

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      318 Views
      d.healeyD

      @Eskano I don't think so. You'd need to write some custom C++ which you might as well do directly in JUCE.

    • E

      What website do you use to download knobs for your plugin?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      219 Views
      Dan KorneffD

      I create all my graphics with Blender.

    • E

      Reverse delay

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      8
      0 Votes
      8 Posts
      664 Views
      d.healeyD

      @Natanr No idea

    • E

      Can you control module presets with buttons?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      742 Views
      SteveRiggsS

      @ustk Ahhh! It's starting to make sense now. Thanks mate. I'll try a few things and see how it goes :) Much appreciated!

    • E

      How do you get the numbers to appear when you control a custom knob?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      302 Views
      SteveRiggsS

      @Eskano Bear in mind that they only appear if you're controlling the slider with the mouse though. If you are using a MIDI controller they won't pop up. It only seems to work when moving them with the mouse.

    • E

      Once you export your VSTi/AUi instrument where does it show up?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      613 Views
      J

      @Christoph-Hart Thank you very much. I am a music composer and enjoy using different daws programs to create my own crazy plugins.

    • E

      Can I export a VSTi/AUi plugin without compiling the source code?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      290 Views
      d.healeyD

      Yes you can use the precompiled binary, but you need to compile the plugin anyway using the same setup you would use to compile HISE so it doesn't really matter.