-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only mono for vst3 #119
Comments
Seems like the rare case of a mono VST. You could try making sure You can also use Faust to mix N channels to mono. faust = e.make_faust_processor("faust")
N = 2
faust.set_dsp_string(f"process = si.bus({N}) :> _;") |
No no, I need stereo. On input I have stereo, playbackprocessor have stereo output, but when im load these VSTs they have only 1 channel, and I cant set_bus to (2,2) to get stereo. I got some VST chain host "VSTForx" it allow to load multiple VST. And it shows that 2 problematic VSTs above have multiple inputs and multiple outputs, but even with VSTForx they dont work in stereo. If I use them in other daws (Ableton, FL Studio) - they work okay in stereo. But in dawdreamer only mono((( |
This one is different than the last example. Expand mono to N channels: faust = e.make_faust_processor("faust")
N = 2
faust.set_dsp_string(f"process = _ <: si.bus({N});") Then graph = [
(play, []),
(vst_plugin, [play.get_name()]),
(faust, [vst_plugin.get_name()])
]
e.load_graph(graph) The output will then be VST_plugin's mono output duplicated into 2 channels. Is that what you'd want? Or maybe the output of VST plugin is supposed to be multiplied by both channels of play? Then try faust = e.make_faust_processor("faust")
N = 2
faust.set_dsp_string(f"process(x, y, z) = x*z, y*z;")
graph = [
(play, []),
(vst_plugin, [play.get_name()]),
(faust, [play, vst_plugin.get_name()])
]
e.load_graph(graph) |
show 2 channels
show 2 channels
show 1 output 1 input channels
trying to set 2 input 2 output or 2,1 or 1,2
Incompatible VSTs?
The text was updated successfully, but these errors were encountered: