synthet1c
Forum Replies Created
-
AuthorPosts
-
September 5, 2012 at 11:39 pm in reply to: What software do you use for making simple re-edits/mashups? #1011626
synthet1c
MemberWith simple being the operative word I use mixmeister to extend/shorten a track or layer an acapella over the top. For complex remixes Ableton is the only solution.
I don’t believe “live remixing” within a dj program sounds good 99% of the time. I prefer to take my time getting it right then re-recording it to play in dj software.
September 5, 2012 at 11:17 am in reply to: How to sync MIDI equipment to virtual DJ with omni control? #1011597synthet1c
MemberYep it’s possible to send a midi clock to ableton so I assume it’s possible to sent the clock to an external sequencer or synthesiser. Don’t know anything about it though as I use VDJ Pro.
synthet1c
MemberIf you want to learn the hard way you need PHP & SQL
synthet1c
Membermake sure you have transferred both the definition file and mapping.. If it still doesn’t work make sure you have the correct drivers installed… Also make sure if you used the driver name to identify the controller in the device line that you have the correct driver name written. The driver name can change between XP and more recent versions of windows.
I don’t actually know where to find the driver name in windows. I just use chackl’s definition tool from the vdj forum to get all the device id’s, but a google search should tell you how to find it.
September 4, 2012 at 12:00 pm in reply to: How to sync MIDI equipment to virtual DJ with omni control? #1011542synthet1c
MemberUnfortunately the midi clock is not currently working in VDJ. It should be fixed in either VDJ7.1 which should be released very shortly or VDJ8 sometime after that.
You may be able to rewire a DAW like ableton from VDJ using the advanced sound config then send the midi clock from the DAW, but I have never tried it as I don’t have any midi capable instruments.
synthet1c
MemberA reloop contour controller edition and interface edition would have you sorted for controlling 4 – 8 decks… They are fantastic construction quality and will be unlikely to break. As said earlier each button has a hard shift allowing 4 decks of independent midi messages as well as each control having a standard temporary shift layer. The jog wheels have 5 hard shifts on each deck layer as well as a temporary shift for each of the 5 layers so if you like things like jog fx you could have 40 possible layers.
The LED ringed encoders for the effects section is very easy to use when the controller has a slightly inclined viewing angle, there is even 4 very short sliders that by default are mapped to the effects knobs but that can be changed. The loop section has 2 push encoders and 2 buttons, there is 2 absolute knobs with a center detend for filter and pan.
The soundcard of the interface edition is 10 out for 4 independent decks and a headphone out, it is loud and sounds pretty good although I prefer my Audio 8.
The one negative of the controller IMO is the hot cue buttons have a big click so if you want to trigger them quickly you need to hit them hard. although through shifts you get access to 8 of them for each deck layer. Also if your a TPR trainspotter the contour has only 128 TPR although I can scratch on it just fine using VDJ Pro with the registry tweek.
synthet1c
MemberIt’s based on my experience of being dragged along to commercial clubs when i was an apprentice chef as that is where all the girls are. It was always train wreck city but the crowd, the staff and the manager don’t care as long as they hear flo rida and christina every 2 hours. Sorry but underground crowds are generally less slutty “guys are sluts too” and more involved in the scene than top 40. There was also pretty much a fight every couple of hours either in or out of the clubs, never have I seen a fight erupt in an underground club as everyone knows each other and are usually welcoming to sincere new comers..
synthet1c
MemberIf you like top 40 and can beatmatch your already better than most top 40 dj’s, so a gig in a small to medium venue won’t be hard, hit up places like casino bars if you have skills, they always have crap dj’s and uneducated crowds who just want a root… I hate top 40 If you can’t tell 😉
Joining the campus radio is a great idea, they are always willing to accept help and you will have a lot of fun. It’s a good plan even if I don’t agree with the destination.
synthet1c
MemberI don’t think i have ever seen a forum get hit this hard…
synthet1c
MemberThat is a great spam, shame it’s all for nothing because this is a ENGLISH forum!
synthet1c
MemberOh okay I misunderstood what you were wanting… You would need to be using a PC and download the watchdog plugin.
then you can map the following to the button that jumps to the next cue point, this is the best way of doing it as watchdog is always running in the background once you have turned it on for the first time so it doesn’t matter if you use a controller, the keyboard or the skin to trigger the cue.
var ‘WD_LUC’ 1 ? hot_cue 2 : var ‘WD_LUC’ 2 ? hot_cue 3 : var ‘WD_LUC’ 3 ? hot_cue 4 : etc..
or you could set a variable on your cue point buttons, but you would need to do this for the controller, keyboard and skin individually eg
button 1
hot_cue 1 & set “LUC” 1button 2
hot_cue 2 & set “LUC” 2button 1
hot_cue 3 & set “LUC” 3then on your button that jumps to the next cue do it the same as above but change the variable name
var ‘LUC’ 1 ? hot_cue 2 : var ‘LUC’ 2 ? hot_cue 3 : var ‘LUC’ 3 ? hot_cue 4 : etc..August 19, 2012 at 4:51 pm in reply to: Should I buy a sound card or just a new controller? #1009966synthet1c
MemberThe mixtrack pro doesn’t actually have a low latency ASIO soundcard in it, It uses standard drivers. You should go for the Audio 2 as it is an ASIO soundcard, The Numark DJI/O is also ASIO if you want to stay with numark, but I have an Audiio 2 as a backup and love it. I don’t know about the older version but the newer one has the same internals as the Audio 6 & 10 soundcards and is nice and clear for a dj soundcard.
synthet1c
MemberLOL…
what you need to do is create a cycle variable that shifts your keys to give you a few pages… then query the state of your cycle on your buttons.
cycle ‘cue_page’ 4
that will give you 4 pages to work with, they are
var ‘cue_page’ 0
var ‘cue_page’ 1
var ‘cue_page’ 2
var ‘cue_page’ 3then you need to query what variable is currently active.
var ‘cue_page’ 1 ? action if true :
var ‘cue_page’ 2 ? action if true :
var ‘cue_page’ 3 ? action if true :
action if page 0 “all false”eg.
var ‘cue_page’ 1 ? hot_cue 11 :
var ‘cue_page’ 2 ? hot_cue 21 :
var ‘cue_page’ 3 ? hot_cue 31 :
hot_cue 1then delete out the spaces between the lines
button 1
var ‘cue_page’ 1 ? hot_cue 11 : var ‘cue_page’ 2 ? hot_cue 21 : var ‘cue_page’ 3 ? hot_cue 31 : hot_cue 1button 2
var ‘cue_page’ 1 ? hot_cue 12 : var ‘cue_page’ 2 ? hot_cue 22 : var ‘cue_page’ 3 ? hot_cue 32 : hot_cue 2button 3
var ‘cue_page’ 1 ? hot_cue 13 : var ‘cue_page’ 2 ? hot_cue 23 : var ‘cue_page’ 3 ? hot_cue 33 : hot_cue 3etc…
If you wanted to have that reflected on the skin you would need to learn a little about skinning and create some pannels to show the required information dependant on the state of the cycle. The good thing about VDJ Pro is once you declare a variable you can query it from anywhere in the program.
synthet1c
Memberthe amen break is the foundation for more than half of the drum n bass ever created and a fair bit of breaks. There is no shame in using it as it sounds so good, but you should really try to resample it to make your own fills and make the loop your own.
In any track I have ever made I use drum loops on the background but make the kick and snare/clap individual to the track by layering, compressing and eqing different sounds. I have never used a melody loop and try to avoid synth presets as it’s more rewarding to make your own.
synthet1c
Member
-
AuthorPosts