Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Tags
    3. channel
    Log in to post
    • All categories
    • David HealeyD

      Compiled Network Fixed Channel Count?

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode scriptnode channel compiled network
      17
      0 Votes
      17 Posts
      280 Views
      David HealeyD

      My network contains a lot more than just some gains so recreating it all via scripting is a pain and means I don't get to work with the nice GUI. Is there a simple build network from JSON type thing? Edit: dsp.createFromJSON might be it..

      Another option I thought of is I can park all the chains in the multi as unused nodes, then in the script use this to add them for just the number of channels:

      const dsp = Engine.createDspNetwork("SimpleGain"); const numChannels = dsp.getNumChannels(); const multi = dsp.get("multi"); const numPairs = numChannels / 2; for (i = 0; i < numPairs; i++) dsp.get("chain" + i).setParent(multi, i);

      This works for my multi channel simple gain because each channel has its own chain, but I don't think it would be a good general solution for all networks.

    • David HealeyD

      [bug] Changing container channel amount = crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports bug channel container routing
      12
      0 Votes
      12 Posts
      2k Views
      gorangroovesG

      @aaronventure Thank you! Got it.

    • David HealeyD

      getMicPositionName defaults to channel 0 when index is greater than the number of channels

      Watching Ignoring Scheduled Pinned Locked Moved Scripting mic position mixer channel
      1
      0 Votes
      1 Posts
      309 Views
      No one has replied
    • David HealeyD

      [feature request] Keyboard floating tile default to omni

      Watching Ignoring Scheduled Pinned Locked Moved General Questions omni channel keyboard
      2
      2 Votes
      2 Posts
      520 Views
      gorangroovesG

      @d-healey Agree! +1

    • David HealeyD

      Mic position name in token parser doesn't work

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports multi-mic token parser channel merge
      6
      1 Votes
      6 Posts
      1k Views
      C

      @d-healey

      Okay, here is a sample set that causes the issue:

      https://www.dropbox.com/sh/9al5lwcwmk6qv4t/AADcSrTIRnwSxm7HIY3xvRVFa?dl=0

      I also included the settings I used for the token parser as an xml file in that folder.

      3 mics works correctly. 2 does not.

      For what it's worth, I'd much rather have the .setUseStaticMatrix issue fixed before this...

    • David HealeyD

      getCurrentLevel other than L or R

      Watching Ignoring Scheduled Pinned Locked Moved Scripting level container channel
      6
      0 Votes
      6 Posts
      904 Views
      ustkU

      @christoph-hart It is apparently a problem on my end only, I forgot I was using my modified version of develop with input enabled...
      This somehow doesn't like multi-channel config :)
      It works fine with standard develop
      Although my version is crashing, it doesn't crash in the debugger...