Search found 9689 matches
- Fri Apr 20, 2018 9:49 am
- Forum: Bidule General
- Topic: Optimizing this Group?
- Replies: 41
- Views: 531
Re: Optimizing this Group?
The calculate max groups might provide a clue, inside preset morph / merph / Curve Controller. When loading a fresh discrete monitor, it would not process unless I cranked up a delay and fade time (secs) value (I think both?) to create a new max value to process That would be "normal" bec...
- Thu Apr 19, 2018 9:59 am
- Forum: Bidule General
- Topic: audio file recorder status
- Replies: 1
- Views: 41
Re: audio file recorder status
The recorder shows when it's recording by the little "rec" symbol, but I don't see any parameter or other way to tell programmatically? There's no hidden parameter it's really set up has a notification to schedule a redraw on the patchbay with the code drawing a body knowing what to query...
- Thu Apr 19, 2018 9:54 am
- Forum: Bidule Bugs and Problems
- Topic: ReaJS VST size
- Replies: 5
- Views: 134
Re: ReaJS VST size
The manual resize of the container window would solve issues where the plugin has resized its own without notifying the host, it won't resize the hosted plugin window. Quickly trying to set a different size through editing @gfx in a js file doesn't seem to produce anything (nor does it notify the ho...
- Thu Apr 19, 2018 9:51 am
- Forum: Bidule General
- Topic: Optimizing this Group?
- Replies: 41
- Views: 531
Re: Optimizing this Group?
The hotspots seems to be within the GUI thread with handling/drawing with the parameter changes (so that should be a non-issue since that thread will always be delayed if the cpu usage is needed) and the actual processing (nothing related to the parameter modulator changing other parameter values). ...
- Wed Apr 11, 2018 10:17 am
- Forum: Bidule Bugs and Problems
- Topic: ReaJS VST size
- Replies: 5
- Views: 134
Re: ReaJS VST size
UI.hostedPluginWindowManualResize should work (DWORD set to 1 to get the resizing back, it's read and cached at startup so you would
need to set it before launching Bidule).
need to set it before launching Bidule).
- Tue Apr 10, 2018 8:39 am
- Forum: Bidule Bugs and Problems
- Topic: ReaJS VST size
- Replies: 5
- Views: 134
Re: ReaJS VST size
So that means that reaJS doesn't notify the host of changing the window size? Yes, the code checks for the plugin gui size before creating it, then check again after it's created if it has changed (because of cases where this was done by the plugins) then listen through the VST api for request/notif...
- Mon Apr 09, 2018 11:44 am
- Forum: Bidule General
- Topic: Optimizing this Group?
- Replies: 41
- Views: 531
Re: Optimizing this Group?
Setting the preset of a discrete matrix (and probably other matrices too) does take a good chunk of time if I check your group. Although that would only show up when changing them, it does reflect in the cpu usage when it's done through a parameter modulator. I would need to dig further and see if t...
- Mon Apr 09, 2018 9:12 am
- Forum: Bidule Bugs and Problems
- Topic: Ribs granular effect plugin not seen
- Replies: 1
- Views: 47
Re: Ribs granular effect plugin not seen
On 10.8.5 in Console.app I see a symbol not found message when trying to load Ribs (___sincos_stret) which prevents loading to go through. Googling around with that symbol name, it looks like it's coming from attempting to use something that wasn't compiled to support 10.8. I don't see how AudioMulc...
- Sun Apr 08, 2018 8:36 am
- Forum: Bidule Bugs and Problems
- Topic: Sync Creator problem
- Replies: 2
- Views: 45
Re: Sync Creator problem
Ok, I would need to check if I see a reason for that. (There are multiple bidules where the processing code has been modified to give priority to
one (or more) of the inputs and not using the pin order. Obviously I don't hold all the cases in my memory).
one (or more) of the inputs and not using the pin order. Obviously I don't hold all the cases in my memory).
- Sun Apr 08, 2018 8:34 am
- Forum: Bidule General
- Topic: Optimizing this Group?
- Replies: 41
- Views: 531
Re: Optimizing this Group?
Since there is no discrete LUT (maybe for good reason, read on), I pursued using the discrete indexed value list like a table (500 item lists at 1 ms highest rate). Not the best results, I'd love it if you could tell me I'm stupid for trying this -- should I just avoid using discretes to mimic audi...
- Fri Apr 06, 2018 10:41 am
- Forum: Bidule Bugs and Problems
- Topic: Au Panner plugins -- UI windows don't work
- Replies: 1
- Views: 47
Re: Au Panner plugins -- UI windows don't work
OK, I can reproduce in a 10.12 VM (and it displays fine on 10.11 and 10.13). It looks like attempting to use the OS built-in AUPannerView somehow fails on 10.12 (or starting at a specific point update) and the code goes bonkers because of that (all UI goes wrong). I'll add some code to fall back to ...
- Thu Apr 05, 2018 10:26 am
- Forum: Bidule General
- Topic: Optimizing this Group?
- Replies: 41
- Views: 531
Re: Optimizing this Group?
You know you could do that in Bidule directly?
The Lookup Tables all have From/To Clipboard and double-clicking on the graph part will give you
a pop up where you can set start/end point, start/end value and a function.
The Lookup Tables all have From/To Clipboard and double-clicking on the graph part will give you
a pop up where you can set start/end point, start/end value and a function.
- Thu Apr 05, 2018 10:24 am
- Forum: Bidule General
- Topic: Plugin pin count
- Replies: 1
- Views: 65
Re: Plugin pin count
Is there a registry or ini setting or something in PB that would tell it that the plugin has 12 ins and outs despite what the default method is giving? Oh this is on OSX but could also try Windows. No, that would against what the VST says. That would be the first case I see where a VST supports mor...
- Thu Mar 29, 2018 1:40 pm
- Forum: Bidule General
- Topic: MPC plugin MIDI I/O problem
- Replies: 3
- Views: 94
Re: MPC plugin MIDI I/O problem
So, my question is: Who determines the number of MIDI output ports, and can it be changed? The plugin itself (and the plugin format). VST2 does not allow for more than 1 in port and 1 out port. VST3 allows multiple input ports and output ports. AU allows a single input port and multiple output port...
- Wed Mar 28, 2018 8:02 am
- Forum: Bidule General
- Topic: possible to do velocity to cc in bidule alone?
- Replies: 8
- Views: 159
Re: possible to do velocity to cc in bidule alone?
there are a bunch of remappers for bidule, but none that do this functionality. kind of weird, in my opinion. Message Remapper (Multi) has Note To CC with the built in behaviour being Note Number -> CC Number, Note Velocity -> CC Value and it does treat Note Offs as CC Value 0 so you would need to ...