• Is there a guide to tracking a HISE project with git?

    10
    0 Votes
    10 Posts
    377 Views
    ustkU

    @d-healey Yeah I agree, but my tests showed that all flags weren't reliable when set within Hise.

    I think FORCE_INPUT_CHANNELS was not working

    JUCE_USE_BETTER_MACHINE_IDS=1 DONT_CREATE_EXPANSIONS_FOLDER=1 USE_SCRIPT_COPY_PROTECTION=1 FORCE_INPUT_CHANNELS=1 HISE_DEACTIVATE_OVERLAY=1 ENABLE_ALL_PEAK_METERS=1 USE_IPP=0 CONFIRM_PRESET_OVERWRITE=0 HISE_USE_OPENGL_FOR_PLUGIN=0

    Also I have some hardened runtimes, microphone flags, microphone access, access text, etc...

    This is something that is still not clear in my mind as where I should set them all. So I kept setting them manually (until I could keep the jucer with Git)

  • Change UI per preset

    7
    0 Votes
    7 Posts
    286 Views
    dannytaurusD

    @ustk Perfect, thanks! πŸ™Œ

  • Preset List Order

    Unsolved
    9
    0 Votes
    9 Posts
    300 Views
    HISEnbergH

    @d-healey Great thank you so much. I think I need a refresher on the String API.

  • Interface Preview - gone mad

    5
    0 Votes
    5 Posts
    147 Views
    ulrikU

    @Lindon said in Interface Preview - gone mad:

    @Christoph-Hart -no it inst doing that - I havent set the UI scale factor anywhere, but in the end I found that GeneralSettings.xml had:

    SCALE_FACTOR="1.75"

    flipping this back to 1 fixed it...

    Same here

  • Inspiration

    3
    1 Votes
    3 Posts
    212 Views
    Robert PuzaR

    @griffinboy πŸŒžπŸŒ—πŸŒ

  • Reverb, Daw and Crash;(

    19
    0 Votes
    19 Posts
    649 Views
    S

    A Faust generated code is never supposed to crash. If is does, then its a Faust compiler problem, but surely not with freeverb.

  • Question about licencing and output

    5
    0 Votes
    5 Posts
    334 Views
    Robert PuzaR

    @d-healey Please specify. If I release an instrument and a sample under Gpl3 and it is important for me that no one can ever close the code - that it is always Gpl3, so how does Hise allow you to buy a license for closed code? How can Gpl3 not be preserved?

  • Get data from external script processor

    19
    0 Votes
    19 Posts
    811 Views
    ulrikU

    @orange Thank you!

  • Scriptnode doesn't save the changes in the custom nodes

    Solved
    8
    0 Votes
    8 Posts
    384 Views
    A

    @Christoph-Hart you can see in the video that the network itself gets saved to a file. This happens by default when you Save XML.

    Doesn't a network (in this case UpDown) have to be a file in order to be importable into another network as a node?

    Why wouldn't hitting Save XML also save the changes in the external/child network?

    Can something be done about the UX of making changes there where a reload of the entire host network (either by ejecting it and loading it back or by reloading HISE) is necessary when any changes are made to the external/child network and Save XML is executed?

    Any networks that also host the changed network should automatically reload when the project is saved.

  • Toggling modulator polarity button from UI?

    5
    0 Votes
    5 Posts
    382 Views
    d.healeyD

    Just came looking for this again and noticed Christoph solved this a couple of weeks ago - https://github.com/christophhart/HISE/commit/2057eb72499e0be24b8effe0e908588d40d8311d

    We now have Modulator.setIsBipolar() and Modulator.isBipolar()

  • Best resource for learning HISE?

    36
    0 Votes
    36 Posts
    2k Views
    griffinboyG

    @Dan-Korneff
    @DabDab

    For nonlinear circuits (amps, filters) I'm working towards using HSIM: (https://www.researchgate.net/publication/354894471_Multidomain_modeling_of_nonlinear_electromagnetic_circuits_using_wave_digital_filters)

    Essentially breaking down the tree into smaller sections and solving nonlinearities locally. A bit different to Kurt Werner's suggested approach of grouping the nonlinearities at the root. Apparently this way is the most efficient (with SIMD), but nobody has compared them yet, so I am looking into doing that and writing a paper.

    Apart from that, yeah your process is similar to mine.
    Creating models for each component, using iteration to inch closer to the benchmark results from the real component. After that you have to deal with representing the connections :face_with_tears_of_joy:

    Lots of work. WDF is good if you know electronics, state space modelling (+MNA) can be tidier and a heck of a lot less code, but I find it more confusing. I've only done filters using such techniques but I know that it's the industry standard.

    12ax7_1.png

    I'm working on a WDF header library for Hise which I intend to release, but it's still in progress, I need to talk to Christoph more about SIMD support in Hise, to see what the best way to optimise it.

  • Unexpected behavior of a FAUST node

    2
    0 Votes
    2 Posts
    124 Views
    ulrikU

    @Mighty23 your roomsize parameter doesn't seem to do anything, is there something wrong in the Faust code maybe?

  • VMware or Proxmox for compiling?

    5
    0 Votes
    5 Posts
    287 Views
    GabG

    @d-healey @Dan-Korneff @orange Thank you for your answers, I'll look into that!

  • Local LAF Alert windows

    12
    0 Votes
    12 Posts
    456 Views
    LindonL

    @Christoph-Hart thanks I will try this...

  • default ZoomHandler.js Plugin Size in DAW

    3
    0 Votes
    3 Posts
    184 Views
    Oli UllmannO

    @treynterrio When starting the plug-in, I check whether the GeneralSettings file exists. If not, I automatically set the scale factor to 75%. Works on the Mac. I have not yet tested whether it works on Windows. There is also the option of querying the user's display size.

    const appData = FileSystem.getFolder(FileSystem.AppData); const settingsFile = appData.getChildFile("GeneralSettings.xml"); if(settingsFile.isFile()) Console.print("General Settings exist"); else Settings.setZoomLevel(0.75);
  • Number of parameters in custom nodes

    8
    0 Votes
    8 Posts
    407 Views
    Christoph HartC

    @orange if possible you can also use a slider pack to reduce the number of parameters (if that is a sensible choice for your node).

    But 40 should be fine, the node interface might look ugly as hell though…

  • Still Struggling with Multi-Outs

    9
    0 Votes
    9 Posts
    210 Views
    d.healeyD

    @Lawrence Currently not available, it's been requested a couple of times though.

    You can use ctrl+# to comment a line and if you use multiple cursors you can comment multiple lines at once.

    Peek 2024-10-15 18-03.gif

    @Lawrence said in Still Struggling with Multi-Outs:

    Is it at all possible to have 16 mono outs instead of 8 stereo?

    As far as I know HISE always works with stereo outputs. Although with FX it's possible to have them in a mono mode so perhaps it's possible with instruments too, but I don't know.

  • Faust error ( DSP )

    6
    0 Votes
    6 Posts
    280 Views
    tsempireT

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

  • Wavetable Help

    9
    0 Votes
    9 Posts
    423 Views
    MorphoiceM

    @ulrik sadly there isn't

  • SNEX weirdness or me ?

    22
    0 Votes
    22 Posts
    755 Views
    ustkU

    @Christoph-Hart Working smoothly! Thanks a lot for the fix! πŸ‘

31

Online

1.8k

Users

12.1k

Topics

105.0k

Posts