Quick Sign In:  

Forum: VirtualDJ Plugins

Topic: Total Contol

This topic is old and might contain outdated or incorrect information.

Is anyone coming up with a mapper for NTC?.

I would like to change sample control to video effects.

Thanks
 

Posted Wed 08 Aug 07 @ 5:33 pm
paulettecerra wrote :
Is anyone coming up with a mapper for NTC?.

I would like to change sample control to video effects.

Thanks

 

Posted Fri 10 Aug 07 @ 12:28 am
TexZKPRO InfinityMember since 2005
I wish I had a NTC in order to make a working mapper...
 

Posted Fri 10 Aug 07 @ 12:31 pm
i know how to make a skin, but this ...
hopefully somebody is working on it
in the meantime can somebody explain me/us how to make one, please
or post a link

maybe i will give it a try

cheers,
matt
 

Posted Fri 24 Aug 07 @ 5:41 am
djcelPRO InfinityModeratorMember since 2004
You can add in vdjDevice.h after "#define PLUGINDEVICE_ICDX "

#define PLUGINDEVICE_DMC2 8
#define PLUGINDEVICE_KC0 9
 

Posted Fri 24 Aug 07 @ 11:55 pm
Did you ever get that figured out?

I would like to change the cross fader to be video only, but still use it as a USB device.
 

Posted Fri 21 Sep 07 @ 2:07 am
ciocePRO InfinityMember since 2004
In crossfader audio option select disable and in video option select link crosfaders and your crossfader will be only for video, no any mapper is necessary ;)
 

Posted Fri 21 Sep 07 @ 8:37 am
FROM the VDJ STAFF:

To make the cross fader act as a video device

OnSlider(int chan,int slider,int absvalue,int relvalue)
{
char cmd[32];

switch(slider)
{
case KC0_SLID_CROSSFADER:
wsprintf(cmd,"video_crossfade %d",absvalue);
SendCommand(chan,cmd);
break;
}
}

It should work like that.

Best regards
 

Posted Thu 04 Oct 07 @ 8:48 pm
My question is does the above routine live in the KC0Mapper.h class?
 

Posted Thu 04 Oct 07 @ 8:51 pm
Here is what I have (so far), but I am getting an error. Any help?

<mapper.cpp>

#include "stdafx.h"
#include "mapper.h"
#include "vdjDevice.h"
#include "KC0Mapper.h"

OnSlider(int chan,int slider,int absvalue,int relvalue)
{
char cmd[32];

switch(slider)
{
case KC0_SLID_CROSSFADER:
wsprintf(cmd,"video_crossfade %d",absvalue);
SendCommand(chan,cmd);
break;
}
}


<error>

.\mapper.cpp(9) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
.\mapper.cpp(15) : error C3861: 'wsprintf': identifier not found
.\mapper.cpp(16) : error C3861: 'SendCommand': identifier not found
.\mapper.cpp(19) : warning C4508: 'OnSlider' : function should return a value; 'void' return type assumed
 

Posted Thu 04 Oct 07 @ 9:23 pm


(Old topics and forums are automatically closed)