HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. oskarsh
    3. Topics
    • Profile
    • Following 0
    • Followers 1
    • Topics 84
    • Posts 394
    • Groups 1

    Topics

    • oskarshO

      Can we draw Path in CSS ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions css scripting style svg icon
      2
      0 Votes
      2 Posts
      90 Views
      Christoph HartC

      @oskarsh yes, store it as a base64 string and then use it as background-image property. This is demonstrated here:

      Link Preview Image HISE | UI Components | Slider

      The knob / slider element can be used to set values with dragging.

      favicon

      (docs.hise.dev)

      (scroll down to the next code example).

      You can of course hardcode the base64 path directly into CSS if it's not dynamic so for static icons I would prefer this.

    • oskarshO

      Midi out plugin is not sending any midi.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      965 Views
      HISEnbergH

      @VirtualVirgin Apologies it took me a while to get back to this.

      In my example I am just using a MIDI Player (I also tried with the sequencer), and a script processor with Message.sendToMidiOut().

      It was quite interesting because nothing I tried worked with VST3 but as soon as I reverted to VST2 (so uncheck the VST3 support flag) it worked. I did some research online and it looks like it is a known issue (at least on the JUCE forum).

      Interesting you noticed that about the MIDI Settings in HISE. I can't imagine that effecting anything at compile time. I will have to try your suggestion.

    • oskarshO

      Cannot finish Export Setup Wizard on Linux

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      139 Views
      oskarshO

      @d-healey thanks alot that worked!

    • oskarshO

      Modulation Matrix Frequency Knob Bug

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports modulation matrix bug
      1
      2 Votes
      1 Posts
      132 Views
      No one has replied
    • oskarshO

      Enable / Disable Compilation in new DSP Compile Dialog

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests scriptnode compile
      20
      5 Votes
      20 Posts
      2k Views
      oskarshO

      @Morphoice if you want a more detailed error message try opening the generated AutogeneratedProject.jucer file from the DSP Networks Binaries Folder.

      You can then compile this file as you would compile HISE in VSCode or XCode. This usually yields the correct error message.

    • oskarshO

      Plugin Crashing DAW when quitting (Hardcoded FX, Preset System)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports crash daw
      9
      0 Votes
      9 Posts
      899 Views
      oskarshO

      @Lindon https://github.com/christophhart/HISE/issues/741

      done

    • oskarshO

      Modulation intensity modes (bipolar, scale, add?)

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      12
      6 Votes
      12 Posts
      1k Views
      griffinboyG

      @Christoph-Hart

      Amazing indeed, thank you

    • oskarshO

      How to use NUM_HARDCODED_FX_MODS & NUM_HARDCODED_POLY_FX_MODS?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      553 Views
      oskarshO

      @bfaudio You will need to compile HISE with that and the plugin with it too.

      Just put it in the HISE extra pre processor definitions in projucer, compile HISE.
      Setup your networks in HISE and add the same definitions to your plugin before compiling.

    • oskarshO

      Cannot use Graphics drawing on Linux

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports linux graphics bug
      15
      0 Votes
      15 Posts
      880 Views
      d.healeyD

      @oskarsh It is in the official repo already. I've just pre setup my juicer file for my use case.

    • oskarshO

      HISE latest - Windows faust network build error

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      214 Views
      No one has replied
    • oskarshO

      Feature/ Bug Bounty

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      6
      1 Votes
      6 Posts
      478 Views
      clevername27C

      I'll make the first donation.

    • oskarshO

      Suspend for Default Effects

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      1
      0 Votes
      1 Posts
      160 Views
      No one has replied
    • oskarshO

      Github Actions CLI builds?

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      7
      0 Votes
      7 Posts
      504 Views
      SimonS

      I'll add to the documentation eventually, but this might help anybody trying to set this up.

      HISE and Juce will segfault without an X11 server running, so just calling them from the command line over ssh will probably look like things are broken. You should run {HISE_BINARY} --help to check if things are working.

      This is my build.sh script, which I put in a Packaging folder in the HISE project directory:

      #!/bin/bash parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) #Makes it so you can call the script from anywhere cd "$parent_path" {HISE Binary} export ../XmlPresetBackups/ProjectName.xml -t:'instrument' -p:'VST' -a:'x64' cd "../Binaries" source ./batchCompileLinux.sh scp -r "$parent_path/../Binaries/Builds/LinuxMakefile/build/ProjectName.vst3/" simon@{laptop_ip}:/home/simon/.vst3/ #Copies the vst to my laptop
    • oskarshO

      Error when compiling project with RNBO Node

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      449 Views
      oskarshO

      @Christoph-Hart thanks I got another error which is connected to how I define parameters in my gen code box. Will check.

    • oskarshO

      Drawing Lines ...

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      430 Views
      oskarshO

      @ulrik Thanks. I think I was missing the p.getBounds(1) for the area use.

      Also when drawing multiple lines I figured that the second line will start at the end of the last line. If you want to draw it from a point always start a new subpath.

      Thanks alot!

    • oskarshO

      Execute .sh / bash script from HISE

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      3
      0 Votes
      3 Posts
      255 Views
      oskarshO

      @d-healey I knew that there was a function thought it was startAsProcess.

      Thanks alot, its just to damn hard to find anything in the docs.

      Here is a code snippet which gets the current selected Theme in MacOS.

      const var b = Engine.createBackgroundTask("GetDesktopTheme"); b.runProcess('defaults', ['read', '-g', 'AppleInterfaceStyle'], function(thread, isFinished, data) { Console.print(data); });
    • oskarshO

      Bulk convert SVG to HUSE Number Path

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      1
      0 Votes
      1 Posts
      251 Views
      No one has replied
    • oskarshO

      Dynamic Panel Order

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      1
      9 Votes
      1 Posts
      382 Views
      No one has replied
    • oskarshO

      Scriptnode use global modulation

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      400 Views
      oskarshO

      @DanH Yes, I could use global cables broadcasting the values from the Scriptnode so they should all be the same. I guess the values received by the global cable will not be sample accurate tho.

      In general I would really love to use the ModulationMatrix system. Its much easier to display the Modulation amount for a Knob and I think that is the proper way how this should be done.

    • oskarshO

      Built-in Audio Samples in HISE

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      1
      3 Votes
      1 Posts
      226 Views
      No one has replied