Hi!
I wrote a plugin for AtomixMP3 and I would like to make it workiing with VDJ too. Can I use this DLL with VDJ directly? If not, how can I re-write the plugin for VDJ? I used beat information to control light effects, but I don't see in VDJ SDK any similiar function.
Could you pls help me?
Thanx in advance.
R.
I wrote a plugin for AtomixMP3 and I would like to make it workiing with VDJ too. Can I use this DLL with VDJ directly? If not, how can I re-write the plugin for VDJ? I used beat information to control light effects, but I don't see in VDJ SDK any similiar function.
Could you pls help me?
Thanx in advance.
R.
Posted Wed 04 Jan 06 @ 11:48 am
There is a new SDK for VirtualDJ only for Video: it is called "video effect" plugin
http://www.virtualdj.com/support/developers/developers.html
"
If you also have some knowledge in Direct3D, you can easily build you own video plugins (both transition or FX).
" http://www.virtualdj.com/support/developers/VideoEffectsSDK.zip Only use the class:
class IVdjVideoEffect
GetInfo("BeatPos",&beatpos)
OR
If you just want to get the beat and not the VDJ Video, i advise you sound plugin and work with the samples
http://www.virtualdj.com/support/developers/developers.html
"
If you also have some knowledge in Direct3D, you can easily build you own video plugins (both transition or FX).
" http://www.virtualdj.com/support/developers/VideoEffectsSDK.zip Only use the class:
class IVdjVideoEffect
GetInfo("BeatPos",&beatpos)
OR
If you just want to get the beat and not the VDJ Video, i advise you sound plugin and work with the samples
Posted Wed 04 Jan 06 @ 2:27 pm
Thank You djcel! I will try it.
Is there a list of available GetInfo strings anywhere? I would like to know the type and structure of returned values.
R.
Is there a list of available GetInfo strings anywhere? I would like to know the type and structure of returned values.
R.
Posted Thu 05 Jan 06 @ 10:43 am
HRESULT (__stdcall *GetInfo)(char *query,void *result);
Example:
/////////////////////////////////////
float beatpos;
GetInfo("BeatPos",&beatpos);
////////////////////////////////////
Look at the examples: "Boom_Auto.cpp" or "Auto_Stobe.cpp"
Have a look here too:
http://www.virtualdj.com/forums/39836/Plugins/NEW_______Video_Plugins.html
Example:
/////////////////////////////////////
float beatpos;
GetInfo("BeatPos",&beatpos);
////////////////////////////////////
Look at the examples: "Boom_Auto.cpp" or "Auto_Stobe.cpp"
Have a look here too:
http://www.virtualdj.com/forums/39836/Plugins/NEW_______Video_Plugins.html
Posted Thu 05 Jan 06 @ 1:20 pm
Doesn't Virtual DJ support Atomixmp3 effects as they are ??
at least it used to be so...
at least it used to be so...
Posted Thu 05 Jan 06 @ 5:37 pm
I don't think Visual Effect from AtomixMP3 can work with VirtualDJ.
Posted Thu 05 Jan 06 @ 5:57 pm