If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Identify DAW (check if FL Studio, etc.)
26 posts
• Page 2 of 3 • 1, 2, 3
Re: Identify DAW (check if FL Studio, etc.)
Here's a shot in the dark.
What about the VST SDK...Surely there's something in there that can identify current host. ?
Then have to find a way how to use it.
What about the VST SDK...Surely there's something in there that can identify current host. ?
Then have to find a way how to use it.
BV MUSIC SYDNEY AUSTRALIA..Songwriting and Software development
Headquartershttps://www.bvmusicsydneyaustralia.com/
Spotifyhttps://open.spotify.com/artist/7JO8QM40mVmHb7pAwKPJi0
Donatationhttps://www.paypal.com/donate/?hosted_button_id=HEUR8R7K8GZ4L
Headquartershttps://www.bvmusicsydneyaustralia.com/
Spotifyhttps://open.spotify.com/artist/7JO8QM40mVmHb7pAwKPJi0
Donatationhttps://www.paypal.com/donate/?hosted_button_id=HEUR8R7K8GZ4L
- billv
- Posts: 1157
- Joined: Tue Aug 31, 2010 3:34 pm
- Location: Australia
Re: Identify DAW (check if FL Studio, etc.)
billv wrote:Here's a shot in the dark.
What about the VST SDK...Surely there's something in there that can identify current host. ?
Then have to find a way how to use it.
http://www.dsprobotics.com/support/viewtopic.php?f=3&t=2732&p=14781#p14781
"There lies the dog buried" (German saying translated literally)
- tulamide
- Posts: 2714
- Joined: Sat Jun 21, 2014 2:48 pm
- Location: Germany
Re: Identify DAW (check if FL Studio, etc.)
tulamide wrote:You don't need to access a device directly when exporting as VST, since you get midi data from the host.
Thank you for putting my mind at ease. I just needed to know that all my hard work isn't being in vain.
Back on topic... is that anything that could be accessed via a DLL? I really know nothing about that so I'm just throwing it out there.
And my apologies, this topic would have been better off in the general section than here. I was about 70% sure this was going to end up being useful, but alas.
- Perfect Human Interface
- Posts: 643
- Joined: Sun Mar 10, 2013 7:32 pm
Re: Identify DAW (check if FL Studio, etc.)
the only way would be if we could have any access to the vst sdk classes which are used in FS, unfortunatly we don't, so if we write a c++ dll we would need to include the AudioEffectsX class (the vst sdk class where you can find the getHostProductString methode) there, but i don't know if this could work after the vst sdk is included in FS already
the best would be when malc could provide a primitive for it which spits out the actual used host, can we have this please!?
the best would be when malc could provide a primitive for it which spits out the actual used host, can we have this please!?
-
Nubeat7 - Posts: 1347
- Joined: Sat Apr 14, 2012 9:59 am
- Location: Vienna
Re: Identify DAW (check if FL Studio, etc.)
Nubeat7 wrote:the best would be when malc could provide a primitive for it which spits out the actual used host, can we have this please!?
+1
- Flemming
- Posts: 31
- Joined: Thu Aug 07, 2014 9:48 am
Re: Identify DAW (check if FL Studio, etc.)
Nubeat7 wrote:the best would be when malc could provide a primitive for it which spits out the actual used host, can we have this please!?
I think everyone would agree to that. I'm not going to email him though... He seems picky about whose emails he opens lol.
- Perfect Human Interface
- Posts: 643
- Joined: Sun Mar 10, 2013 7:32 pm
Re: Identify DAW (check if FL Studio, etc.)
Hi guys
I was trying to achieve this very thing myself after being asked to come up with something similar by another user!
here is my workaround, it is a work in progress, just pop the dll and the application into your vst folder and load the plugin in your daw! the plugin should display the name of the daw! it should work for Cubase, Sonar, FL, Bitwig, Acid,Reaper and Live!
the only thing with it is, it leaves a tray app running after exit, just click it to close, it is using a tcp connection to inject the name of the daw into the vst
best regards
http://www.mediafire.com/download/ab4d4 ... wQuery.rar
I was trying to achieve this very thing myself after being asked to come up with something similar by another user!
here is my workaround, it is a work in progress, just pop the dll and the application into your vst folder and load the plugin in your daw! the plugin should display the name of the daw! it should work for Cubase, Sonar, FL, Bitwig, Acid,Reaper and Live!
the only thing with it is, it leaves a tray app running after exit, just click it to close, it is using a tcp connection to inject the name of the daw into the vst
best regards
http://www.mediafire.com/download/ab4d4 ... wQuery.rar
- Jay
- Posts: 276
- Joined: Tue Jul 13, 2010 5:42 pm
Re: Identify DAW (check if FL Studio, etc.)
Jay wrote:the only thing with it is, it leaves a tray app running after exit, just click it to close
I wrinkled my nose up at this bit. But if it works then it works, and that's something more than I've got.
I'd like to test this and let you know how it works here but all I see is a DLL file and an EXE and I don't know what to do with them.
- Perfect Human Interface
- Posts: 643
- Joined: Sun Mar 10, 2013 7:32 pm
Re: Identify DAW (check if FL Studio, etc.)
Hey PHI just put both into your shared vst folder and load the vst! its an effect plug!
I will upload a schematic as soon as ive finished it! i will need to add all the other popular hosts to the exe.
aye it is because i have the functions running from within a tray app then it sends the result to the vst using a tcp connection! i just need to find a way of closing the tray app automatically once the result is received
Regards
I will upload a schematic as soon as ive finished it! i will need to add all the other popular hosts to the exe.
Perfect Human Interface wrote:I wrinkled my nose up at this bit.
aye it is because i have the functions running from within a tray app then it sends the result to the vst using a tcp connection! i just need to find a way of closing the tray app automatically once the result is received
Regards
- Jay
- Posts: 276
- Joined: Tue Jul 13, 2010 5:42 pm
Re: Identify DAW (check if FL Studio, etc.)
Jay wrote:load the vst! its an effect plug!
Ohh... Hahaha.
It does work indeed. Unfortunately it also triggered a pop up from Windows Firewall saying it blocked some features and asking whether I want to give it access, etc.
- Perfect Human Interface
- Posts: 643
- Joined: Sun Mar 10, 2013 7:32 pm
26 posts
• Page 2 of 3 • 1, 2, 3
Who is online
Users browsing this forum: No registered users and 80 guests