Home 2023 Forums DJing Software dj controller no real preamp

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #2138341
    DJ Vintage
    Moderator

    1) 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 😀

    #2138431
    deathy
    Participant

    I like option 4, that’s the one I’d go for. 😉

    #2138461
    DJ Vintage
    Moderator

    Yeah Deathy, YOU would. But then again, you went ahead and wrote your own DJ software so ….

    #2138561
    Michael Smith
    Participant

    What 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 runme

    And 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.

    #2138771
    Michael Smith
    Participant

    Looks 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 runme

    The 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.

    #2138811
    DJ Vintage
    Moderator

    Gotta love this place!

    #2138901
    deathy
    Participant

    Love the crunchy solutions!

    #2140841
    Mat
    Participant

    An 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.

    #2140861
    DJ Vintage
    Moderator

    Thanks 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 😀

Viewing 9 posts - 1 through 9 (of 9 total)
  • The forum ‘DJing Software’ is closed to new topics and replies.