dj controller no real preamp
Home 2023 › Forums › DJing Software › dj controller no real preamp
- This topic has 9 replies, 4 voices, and was last updated 11 years, 1 month ago by
DJ Vintage.
-
AuthorPosts
-
February 9, 2015 at 3:04 pm #2138341
DJ Vintage
Moderator1) Not that I tested. Most controllers in the budget range are midi-controllers only. The ones that are stand-alone mixers as well start at a higher price-tag. I just did a quick and dirty test with my DDJ-SX (a 1000 euro controller with standalone function) and there I can control the volume from my iTunes with the master volume knob.
2) Doubt it. Perhaps you could find a simple midi software mixer and tweak that, not sure if you can get your sound from iTunes into the midi mixer though.
3) Clearly you could get a small PA mixer with USB functionality. This would be an excellent option if you want to play out and use mics as well as have balanced outs to your PA. Also there are some regular “analogue” DJ mixers that feature a USB soundcard. Those are not suitable for digital DJ-ing (as they usually only present one audio channel which you can play back through one of the channels on the mixer). I am guessing this is what you ment with mixer+controller and I can see how you wouldn’t like that option
4) Lots of luck with that 😀
February 9, 2015 at 5:35 pm #2138431deathy
ParticipantI like option 4, that’s the one I’d go for. 😉
February 9, 2015 at 6:30 pm #2138461DJ Vintage
ModeratorYeah Deathy, YOU would. But then again, you went ahead and wrote your own DJ software so ….
February 9, 2015 at 9:54 pm #2138561Michael Smith
ParticipantWhat I’ve done so far.. it took several hours of googling and testing to figure this out…
I installed SoundFlower and set the 2 track to be my sound output. That at least gives me a volume control which setting the output to the MixTrack doesn’t.
Then in SoundFlowerBed, which is a menu bar app, I set the output of the SoundFlower 2 track to the input of the MixTrack. Now I can set the volume going out using the main mac volume slider.
Next I installed MidiPipe. I created a pipe that reads the main volume slider on the MixTrack and sends the values to an applescript. The script looks like this:
on runme(message)
if (item 1 of message = 176) and (item 2 of message = 23) and (item 3 of message > 0)
then set volume output volume (item 3 of message)
end runmeAnd now my slider changes the mac volume. Things aren’t blasting loud any more. The only thing is that MidiPipe has to be running all the time for that pipe to work. And FlowerBed has to be running to hear anything.
February 10, 2015 at 3:10 am #2138771Michael Smith
ParticipantLooks like I’m doing option 2 for now, which maybe later I’ll turn in to option 4. 🙂
Actually I realized that I can do a ton of stuff with this, like pausing and unpausing iTunes, setting the volume inside of iTunes, and even turning on and off lights on the mixTrack. I’m building the applescript to do more, but so far it looks like this:
on runme(message) if (item 1 of message = 176) and (item 2 of message = 23) and (item 3 of message > 0) then set volume output volume ((item 3 of message) * 0.78) end if if (item 1 of message = 176) and (item 2 of message = 22) and (item 3 of message > 0) then tell application "iTunes" set sound volume to ((item 3 of message) * 0.78) end tell end if if (item 1 of message = 144) and (item 2 of message = 59) and (item 3 of message > 0) then tell application "iTunes" playpause if player state is playing then return {144,59,127} else return {144,59,0} end if end tell end if end runmeThe return message is then passed back to the mixTrack to turn the play button light on or off based on if the music is playing.
February 10, 2015 at 7:41 am #2138811DJ Vintage
ModeratorGotta love this place!
February 10, 2015 at 9:57 am #2138901deathy
ParticipantLove the crunchy solutions!
February 15, 2015 at 6:13 am #2140841Mat
ParticipantAn native instruments audio 2 soundcard will work, and also have volume controller on it. And you can buy any cheap normal mixer for volumes eq etc,
you get a copy of traktor with the soundcard, then you can buy a midi controller if and when you need one.
You can use your keyboard with traitor tO dj off of.
February 15, 2015 at 9:53 am #2140861DJ Vintage
ModeratorThanks Mat, good addition for others that have the same problem but not the skill or desire to go the “easy” route the OP opted for 😀
-
AuthorPosts
- The forum ‘DJing Software’ is closed to new topics and replies.