Become a part of the TranceAddict community!Frequently Asked Questions - Please read this if you haven'tSearch the forums
TranceAddict Forums > DJing / Production / Promotion > Production Studio > Question Regarding Sound Creating (Is It Always Done From Init Preset On a BasicVST?)
Pages (2): [1] 2 »   Last Thread   Next Thread
Share
Author
Thread    Post A Reply
MIKE333ACE
Supreme tranceaddict



Registered: Jun 2011
Location: Aus
Question Regarding Sound Creating (Is It Always Done From Init Preset On a BasicVST?)

Hello TA's. Im just wanting to know how professional/top quality sounds are made like the sounds you hear in plugins like Nexus. Im just curious because I find it hard to imagine that those sounds are made from just a basic "INIT" preset.

Also, as we all know, many professional artists make their own sounds instead of using presets. So im also wanting to know if they make their sounds from an INIT preset in lets say... sylenth. Or do they use a more complicated/advanced plugin???

Any help on this would be great, Cheers


___________________

Old Post Jan-09-2012 12:52  Australia
Click Here to See the Profile for MIKE333ACE Click here to Send MIKE333ACE a Private Message Visit MIKE333ACE's homepage! Add MIKE333ACE to your buddy list Report this Post Reply w/Quote Edit/Delete Message
tehlord
Supreme tranceaddict



Registered: Jan 2009
Location: Windsor

Always from init.


___________________
Soundcloud

Old Post Jan-09-2012 13:55  United Kingdom
Click Here to See the Profile for tehlord Click here to Send tehlord a Private Message Add tehlord to your buddy list Report this Post Reply w/Quote Edit/Delete Message
MIKE333ACE
Supreme tranceaddict



Registered: Jun 2011
Location: Aus

quote:
Originally posted by tehlord
Always from init.

Even with sounds from Nexus???

I thought that they maybe recorded instruments and then edited them digitally. ??


___________________

Old Post Jan-09-2012 13:58  Australia
Click Here to See the Profile for MIKE333ACE Click here to Send MIKE333ACE a Private Message Visit MIKE333ACE's homepage! Add MIKE333ACE to your buddy list Report this Post Reply w/Quote Edit/Delete Message
tehlord
Supreme tranceaddict



Registered: Jan 2009
Location: Windsor

Actually Nexus does use samples as well, similar to the old S&S synths like the D50. I don't know if there's a synth engine behing the plugin that they use to create some sounds as you would a traditional synth though. Sylenth will all be done from init though.


___________________
Soundcloud

Old Post Jan-09-2012 14:00  United Kingdom
Click Here to See the Profile for tehlord Click here to Send tehlord a Private Message Add tehlord to your buddy list Report this Post Reply w/Quote Edit/Delete Message
MIKE333ACE
Supreme tranceaddict



Registered: Jun 2011
Location: Aus

quote:
Originally posted by tehlord
Actually Nexus does use samples as well, similar to the old S&S synths like the D50. I don't know if there's a synth engine behing the plugin that they use to create some sounds as you would a traditional synth though. Sylenth will all be done from init though.

Alrite then, looks like ive got a lot of learning to do


___________________

Old Post Jan-09-2012 14:03  Australia
Click Here to See the Profile for MIKE333ACE Click here to Send MIKE333ACE a Private Message Visit MIKE333ACE's homepage! Add MIKE333ACE to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Storyteller
Supreme tracneaddict



Registered: Feb 2005
Location: The Netherlands

Oi, aye be wrong if I di'nt, init.


___________________

Storyteller Website | Storyteller @ Facebook | Storyteller @ Beatport | Storyteller @ Soundcloud | Stephen J. Kroos - Europa (Storyteller Remix)
Anthony Mea - Get It On (Storyteller Remix)

quote:
If less is more think about how much more more would be.
-Frasier

Old Post Jan-09-2012 14:04  Netherlands
Click Here to See the Profile for Storyteller Click here to Send Storyteller a Private Message Visit Storyteller's homepage! Add Storyteller to your buddy list Report this Post Reply w/Quote Edit/Delete Message
sylvannas
Senior tranceaddict



Registered: Nov 2010
Location: Hyderabad,India

Reverse Engineer Presets !


___________________
Cubase + FL Studio | Sylenth1 | Nexus 2 | Lots of Free Goodies

Glitches are innnn...............Bitches !!!

Check Out My Soundcloud Page here

Old Post Jan-09-2012 16:25  India
Click Here to See the Profile for sylvannas Click here to Send sylvannas a Private Message Visit sylvannas's homepage! Add sylvannas to your buddy list Report this Post Reply w/Quote Edit/Delete Message
DJRYAN™
www.djryan.com



Registered: Aug 2009
Location: Atlanta, USA

I would think most engineers circumvent programming by "sound" and use computer language to design their patch, like Atlanta's - Richard Devine. When you understand music theory and computer language. You can make a "vst" patch do just about anything without playing with the synth itself by doing stuff like this:


quote:

// print "Hello world!"
"Hello world!".postln;


// play a mixture of pink noise and an 800 Hz sine tone
{ SinOsc.ar(800, 0, 0.1) + PinkNoise.ar(0.01) }.play;


// modulate a sine frequency and a noise amplitude with another sine
// whose frequency depends on the horizontal cursor position
{
var x = SinOsc.ar(MouseX.kr(1, 100));
SinOsc.ar(300 * x + 800, 0, 0.1)
+
PinkNoise.ar(0.1 * x + 0.1)
}.play;


// list iteration: create a collection of indices multiplied by their values
[1, 2, 5, 10, -3].collect {
arg item, i;
item * i;
};


// factorial function
f = {
arg x;
if(x == 0) { 1 } { f.(x-1) * x }
};


then you can import this "language" into a synth patch, and have the best super saw wave there is. Without playing w/ filters, lfo, etc. etc..

Then the rest of us, try and duplicate these sort of commands by ear so that we've replicated what the engineers have actually programmed.

If you've ever watched a youtube video on programming a synth you've probably noticed how percise the setting have to be in order to get that "sound" and how they go right to it.

That's because someone broke the "code" and had that particular sound translated to whatever synth you're using to recreate it.

It's really interesting stuff.

Last edited by DJRYAN™ on Jan-09-2012 at 20:46

Old Post Jan-09-2012 20:31 
Click Here to See the Profile for DJRYAN™ Click here to Send DJRYAN™ a Private Message Visit DJRYAN™'s homepage! Add DJRYAN™ to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Looney4Clooney
Supreme tranceaddict



Registered: Apr 2010
Location:

most engineers and producers are math illiterate. Levine and other users that use programming with apps like max msp are really not common. And most are using functions already coded by others.


___________________
"This is why Superman works alone." GC
old stuff from days gone by (2001-2004)
Mad For Brad's gay little contest

Old Post Jan-09-2012 20:53 
Click Here to See the Profile for Looney4Clooney Click here to Send Looney4Clooney a Private Message Add Looney4Clooney to your buddy list Report this Post Reply w/Quote Edit/Delete Message
DJRYAN™
www.djryan.com



Registered: Aug 2009
Location: Atlanta, USA

I dunno, I would think that some of the patches that are loaded in any given VST were programmed at the code level for percision rather than a sound designer just playing with knobs until the desired effect is achieved.

Old Post Jan-09-2012 20:57 
Click Here to See the Profile for DJRYAN™ Click here to Send DJRYAN™ a Private Message Visit DJRYAN™'s homepage! Add DJRYAN™ to your buddy list Report this Post Reply w/Quote Edit/Delete Message
MIKE333ACE
Supreme tranceaddict



Registered: Jun 2011
Location: Aus

Wow, interesting stuff. Thanks guys.

But then to my most important question. How do artists, like AVB for example, make their sounds. I cant imagine AVB doing all that complicated code stuff that you showed. So how do they do it?? Do they just use a simple plugin like Sylenth?? Or do they use something more complicated??


___________________

Old Post Jan-10-2012 00:29  Australia
Click Here to See the Profile for MIKE333ACE Click here to Send MIKE333ACE a Private Message Visit MIKE333ACE's homepage! Add MIKE333ACE to your buddy list Report this Post Reply w/Quote Edit/Delete Message
Vector A
Your petrochemical arms



Registered: Apr 2011
Location: U.S.

quote:
Originally posted by DJRYAN™
I would think most engineers circumvent programming by "sound" and use computer language to design their patch, like Atlanta's - Richard Devine. When you understand music theory and computer language. You can make a "vst" patch do just about anything without playing with the synth itself by doing stuff like this:

then you can import this "language" into a synth patch, and have the best super saw wave there is. Without playing w/ filters, lfo, etc. etc..

Then the rest of us, try and duplicate these sort of commands by ear so that we've replicated what the engineers have actually programmed.

If you've ever watched a youtube video on programming a synth you've probably noticed how percise the setting have to be in order to get that "sound" and how they go right to it.

That's because someone broke the "code" and had that particular sound translated to whatever synth you're using to recreate it.

It's really interesting stuff.

Supercollider is interesting, yes, but that is not what most synthesists are using, lol, especially to make something like a supersaw.

Old Post Jan-10-2012 00:36  United States
Click Here to See the Profile for Vector A Click here to Send Vector A a Private Message Add Vector A to your buddy list Report this Post Reply w/Quote Edit/Delete Message

TranceAddict Forums > DJing / Production / Promotion > Production Studio > Question Regarding Sound Creating (Is It Always Done From Init Preset On a BasicVST?)
Post New Thread    Post A Reply

Pages (2): [1] 2 »  
Last Thread   Next Thread
Click here to listen to the sample!Pause playbackLeila K - Open Sesame (which mix?) [2005] [0]

Click here to listen to the sample!Pause playbackQuest - "The Shepherd" [2004]

Show Printable Version | Subscribe to this Thread
Forum Jump:

All times are GMT. The time now is 00:33.

Forum Rules:
You may not post new threads
You may not post replies
You may not edit your posts
HTML code is ON
vB code is ON
[IMG] code is ON
 
Search this Thread:

 
Contact Us - return to tranceaddict

Powered by: Trance Music & vBulletin Forums
Copyright ©2000-2026, Jelsoft Enterprises Ltd.
Privacy Statement / DMCA
Support TA!