Go Back   DriverHeaven.net > Forums > Hardware and Related Topics > kX Project Audio Driver Support Forum > Effects and the DSP

Notices

Reply
 
LinkBack Thread Tools Display Modes
Old Feb 23, 2008, 08:26 PM   #1 (permalink)
K1t4r0
DriverHeaven Newbie
 
Join Date: Feb 2007
Posts: 6
K1t4r0 is on a distinguished road
System Specs

??? Swap Front-Rear Microcode DSP

Hi all!

well, iīm trying to do a little plugin that works as the mixer button to swap channels.

Itīs not working perfect. Someone can help me

Code:
    input inFR, InFL, inRR, inRL;
    output oFR, oFL, oRR, oRL;        
    control Swap;
    
    macs oFR, 0, inRR, Swap;
    macs oFL, 0, inRL, Swap;
    macs oRR, 0, inFR, Swap;
    macs oRL, 0, InFL, Swap;

Thx a lot People!
K1t4r0 is offline   Reply With Quote
Old Feb 23, 2008, 09:24 PM   #2 (permalink)
Russ
DriverHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 3,913
Russ has a spectacular aura aboutRuss has a spectacular aura aboutRuss has a spectacular aura about

The following should do what you want, but it should not be connected to FxBus.

Code:
interp oFL, inFL, Swap, inRL;
interp oFR, inFR, Swap, inRR;
interp oRL, inRL, Swap, inFL;
interp oRR, inRR, Swap, inFR;
Russ is offline   Reply With Quote
Old Feb 24, 2008, 01:10 AM   #3 (permalink)
K1t4r0
DriverHeaven Newbie
 
Join Date: Feb 2007
Posts: 6
K1t4r0 is on a distinguished road
System Specs

Quote:
Originally Posted by Russ View Post
The following should do what you want, but it should not be connected to FxBus.

Code:
interp oFL, inFL, Swap, inRL;
interp oFR, inFR, Swap, inRR;
interp oRL, inRL, Swap, inFL;
interp oRR, inRR, Swap, inFR;
Thx a lot Russ, itīs not connected direct toa FxBus, i have 6 sources connected to one mixer. Between mixer and k1lt that iīll put the Swap
K1t4r0 is offline   Reply With Quote
Old Feb 24, 2008, 01:25 AM   #4 (permalink)
K1t4r0
DriverHeaven Newbie
 
Join Date: Feb 2007
Posts: 6
K1t4r0 is on a distinguished road
System Specs

It didnīt work =/
Just worked like a volume
I need this to work as Swap Channels in the dam* mixer

hereīs my dsp

http://img297.imageshack.us/img297/5151/dsppo0.gif


K1t4r0 is offline   Reply With Quote
Old Feb 24, 2008, 10:56 AM   #5 (permalink)
Russ
DriverHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 3,913
Russ has a spectacular aura aboutRuss has a spectacular aura aboutRuss has a spectacular aura about

Sorry, your options are a little limited without using VC++ to make the plugin. Your "Swap" control is using a slider instead of a switch (and you did not specify what slider value should make it swap), so it cross-mixes between front and rear until the values are 0% (normal) or 100% (swapped). You could use kX automation (i.e. Note On) to make it work more like a switch, etc, but such a plugin should really be written in VC++.
Russ is offline   Reply With Quote
Old Feb 24, 2008, 04:37 PM   #6 (permalink)
K1t4r0
DriverHeaven Newbie
 
Join Date: Feb 2007
Posts: 6
K1t4r0 is on a distinguished road
System Specs

Wow, so iīll have to learn it.
My trouble is, that i donīt want to use to Outputs
I use Traktor 4 some mixing so, i want to use the same phone for Pre Listen and than, when i got to mix, change to Master Out.
Theres anyway to do that?
K1t4r0 is offline   Reply With Quote
Old Feb 24, 2008, 05:37 PM   #7 (permalink)
Russ
DriverHeaven Extreme Member
 
Join Date: Jan 2005
Posts: 3,913
Russ has a spectacular aura aboutRuss has a spectacular aura aboutRuss has a spectacular aura about

I am sorry, I do not completely understand what you want to do:

You have 2 (stereo) inputs and 2 (stereo) outputs, (from your above description) what should happen to the second input when the output is swapped? What should happen with the headphone output (it sounds like you want no audio send to the headphones after swapping, but then you can no longer monitor (or cue up) anything) after swapping?

- kxlt can swap its outputs.
- MX6 can be used to mute/unmute/mix inputs. Also, it has the ability to Swap the Main and Record outputs, thus can also be used to swap outputs (if the REC bus is not already being used for something else).

- I would think that you could do what you want within Traktor as well.

Last edited by Russ; Feb 24, 2008 at 06:02 PM.
Russ is offline   Reply With Quote
Old Feb 25, 2008, 03:33 AM   #8 (permalink)
Lex Nahumury
DriverHeaven Senior Member
 
Join Date: Jan 2003
Location: The Netherlands
Posts: 1,730
Lex Nahumury is on a distinguished road

Quote:
Originally Posted by K1t4r0 View Post
It didnīt work =/
Just worked like a volume
I need this to work as Swap Channels in the dam* mixer
[/u]
But it *is* practicaly the same.
The only difference is that 'Swap Channels' is a Switch,
while Russ's code is a Crossfader, but they both do swap the channels!

Anyway; you can't program a real Switch in 'simple' Dane,
you need C++ for that.
Lex Nahumury is offline   Reply With Quote
Old Feb 25, 2008, 11:46 AM   #9 (permalink)
Maddogg6
Tail Razer
 
Maddogg6's Avatar
 
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 3,595
Maddogg6 will become famous soon enough

Maybe the OP is asking this:
Can VC++ plugin change the state of the kX MIXERS Master page 'Swap FRONT <> Switch'
So - its a plugin with no inputs or outputs - its just a tweak screen for quick access to the SWAP FRONT <> REAR switch...

Perhaps use Russ' Plugin QL and assign a keystroke to change that switches state?
(I have it configed to use CTRL+Shift+0 - it works, tho never really tested for speed or timing??)
Maybe that would be a good work around for him... tho I would expect a crossmixer was used for such things to avoid any one hearing the hard change from a switch.

I think maybe he actually wants an automated crossmixer thats toggled with a switch, with preset speed and levels etc...??
I never did any DJ mixing to know for certain how its done or whats used.
Maddogg6 is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Toggle 'Swap Front and Rear' mode.. Nathan323 General Discussion 2 Dec 10, 2006 06:32 PM
Using kxctrl to swap front and rear output GregC General Discussion 20 Dec 12, 2005 07:06 PM
3536 swap front and rear speakers? 45er General Discussion 1 Jan 1, 2004 05:29 PM
can OFFICIAL driver swap front and rear? Timme General Discussion 1 Nov 14, 2003 10:30 PM
3533 and Live! Value Swap front and Rear mmortal03 General Discussion 2 May 30, 2003 07:59 PM




 

 
Powered by: vBulletin
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Artwork by Allan 'Zardon' Campbell, vBulletin implementation by Craig '5320' Humphreys based on original artwork by Ratchet.

All times are GMT -5. The time now is 02:00 AM. Copyright ©2008 DriverHeaven.net