SUBSonar v4 for the VST-DX wrapper... any feature requests
-
- KVRist
- 268 posts since 28 Apr, 2003
I asked Jorgen about it a ways back, according to him it's all on their end, and he made it sound like its as simple as pie to fix, "They need to dispatch the audioMasterSizeWindow opCode, index=width, value=height... "
-
- KVRist
- 151 posts since 11 Mar, 2004 from Hong Kong
Thanks for supporting v4.4.2! The feature list looks great to me. Regarding the energyXT gui size issue, the max. size setting should be fine enough for me.
- Beware the Quoth
- Topic Starter
- 35491 posts since 4 Sep, 2001 from R'lyeh Oceanic Amusement Park and Funfair
nutsadamus; it might be the case that the wrapper does that on its initial scan, but if the wrapper only gets run intermittently, it wont make any difference to Sonar. And anything Sonar detects probably isnt passed back to the wrapper's registry information.
KLG; I'm actually surprised that v4.4.4 isnt available as a downloadable update, because the older versions dont support the new temposync setting. Since there are two possible 'up to date' versions in use, thats what I reckon I have to support. Luckily it has been relatively minor to do so, because of the way that I've rewritten my code...
KLG; I'm actually surprised that v4.4.4 isnt available as a downloadable update, because the older versions dont support the new temposync setting. Since there are two possible 'up to date' versions in use, thats what I reckon I have to support. Luckily it has been relatively minor to do so, because of the way that I've rewritten my code...
An idiot on Set Theory:
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
-
- KVRAF
- 3476 posts since 9 Apr, 2003 from NE Ohio, USA
Hey, there's Java VSTI support ... why not perl? My windows perl.exe (ActiveState 5.8.4) is "only" 41Kwhyterabbyt wrote:Hehehe. Although to be honest, I dont know offhand of another host where you can get access to change the menu structure...
My code is in Perl, Im afraid, so it would be a bit clunky to amalgamate into Sonar.
Doug, who's going to be giving perl training classes at work soon....
Logic is a pretty flower that smells bad - Spock, in "I, Mudd"
For a good time click http://www.belindabedekovic.com/video_fl_en.htm
For a good time click http://www.belindabedekovic.com/video_fl_en.htm
- Beware the Quoth
- Topic Starter
- 35491 posts since 4 Sep, 2001 from R'lyeh Oceanic Amusement Park and Funfair
Yeah, perl.exe is small. But the perl58.dll (which the Activestate PDK adds when you compile to an exe) is about 750K. And from experience, perl::tk is going to add about another Mb to that at least.
An idiot on Set Theory:
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
- Beware the Quoth
- Topic Starter
- 35491 posts since 4 Sep, 2001 from R'lyeh Oceanic Amusement Park and Funfair
The current version has virtually the same functionality as v3, although it's a total rewrite with much cleaner code. It will however, work for both old and new versions of the adaptor, and supports a couple of new things like the tempo-ync flag.
The rest of the new features and the GUI still have to be finished, but Ive had no real time to work on it for a couple of weeks.
The rest of the new features and the GUI still have to be finished, but Ive had no real time to work on it for a couple of weeks.
An idiot on Set Theory:
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
-
- KVRist
- 495 posts since 5 Sep, 2002 from Boston, Mass
cool, no rush
just anxious as its a gr8 tool!
If it sounds good it is good.
-
- KVRist
- 251 posts since 19 Oct, 2004
First of all
SubSonar has made working with VSTs much easier in Sonar. I really appreciate it.
The features you have mentioned sound great, even though I just browsed this thread and have an immediate response to the tread title. Here are my thoughts, please excuse the redundancy.
Resizing VST GUIs would be GREAT. I don't know how Synth1 did it but I wish more developer would make plugins like it.
Nesting plugin groups would be nice maybe something like:
[effects]
EQ, REVERB, DELAY, FILTER, DYNAMICS
[/effects]
[eq]
GRAPHIC, PARAMETRIC, MASTERING
[/eq]
[dynamics]
COMPRESSOR, LIMITER, GATE, DEESER, MASTERING
[/dynamics]
[instuments]
SYNTH, DRUMS, STRINGS, KEYS, SAMPLER, BASS, MONO
[/instruments]
[synth]
ANALOG, ADDITIVE, WAVETABLE, FM
[/synth]
[you get the idea]
Just a thought.
SubSonar has made working with VSTs much easier in Sonar. I really appreciate it.
The features you have mentioned sound great, even though I just browsed this thread and have an immediate response to the tread title. Here are my thoughts, please excuse the redundancy.
Resizing VST GUIs would be GREAT. I don't know how Synth1 did it but I wish more developer would make plugins like it.
Nesting plugin groups would be nice maybe something like:
[effects]
EQ, REVERB, DELAY, FILTER, DYNAMICS
[/effects]
[eq]
GRAPHIC, PARAMETRIC, MASTERING
[/eq]
[dynamics]
COMPRESSOR, LIMITER, GATE, DEESER, MASTERING
[/dynamics]
[instuments]
SYNTH, DRUMS, STRINGS, KEYS, SAMPLER, BASS, MONO
[/instruments]
[synth]
ANALOG, ADDITIVE, WAVETABLE, FM
[/synth]
[you get the idea]
Just a thought.
- Beware the Quoth
- Topic Starter
- 35491 posts since 4 Sep, 2001 from R'lyeh Oceanic Amusement Park and Funfair
Hi wwwill, and thanks.
Unfortunately its Sonar which creates the menus, so there's only one level of nesting possible. However you can be slightly creative with the naming to get soemthing close. I've already got that (slightly kludgy) solution in SUBSonar3 which can create menu folder names like
EQ__graphics
EQ__master
EQ__parametric
dynamics__compressor
dynamics__limiter
dynamics__gate
et.c.
Check out the section "Advanced : Folders Within Folders" in the documentation at http://whiterabbitdesign.co.uk/main/stu ... _docs.html
Given the way Sonar itself works, thats the best I can do, Im afraid.
Unfortunately its Sonar which creates the menus, so there's only one level of nesting possible. However you can be slightly creative with the naming to get soemthing close. I've already got that (slightly kludgy) solution in SUBSonar3 which can create menu folder names like
EQ__graphics
EQ__master
EQ__parametric
dynamics__compressor
dynamics__limiter
dynamics__gate
et.c.
Check out the section "Advanced : Folders Within Folders" in the documentation at http://whiterabbitdesign.co.uk/main/stu ... _docs.html
Given the way Sonar itself works, thats the best I can do, Im afraid.
An idiot on Set Theory:
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
"In some cases there is an object called red that contains everything that is red. In much the same way a pot is a plate."
-
- KVRAF
- 4334 posts since 20 Feb, 2004
Thanks for this, WR. My VST-wrapped plugs list has grown longer than my arm and scrolling down near the bottom is a pain; I'm looking forward to using SubSonar to help alleviate the situation.
A well-behaved signature.