How to make the oscilator sound more dirty?

Sound synthesis techniques, DSP and related mathematics

Moderators: electrogear, exonerate

How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 7:39 am

For example 3xosc or other synths the waveform sound more dirty. Mybe its distortion i dont know but it sounds diffrent. How do i make this?
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Xtinct on Fri Jan 13, 2012 8:01 am

For sines and triangles feed some of the output back into it phase upto about 0.25 any more and it heads towards white noise.
Xtinct
essemist
 
Posts: 184
Joined: Thu Feb 10, 2011 11:06 pm

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 8:28 am

Can you explain little bit better or show pic what you mean?
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Yuroun on Fri Jan 13, 2012 8:33 am

Code by Mo

Found here: http://synthmaker.co.uk/forum/viewtopic.php?f=5&t=10239&p=75987&hilit=%2F%2F+Mono+Hyperbolic+Tangent+Distortion#p75987

Code: Select all
// Mono Hyperbolic Tangent Distortion
monoin in;
monoin pregain;
monoout out;
float smIntVarE=2.71828183;
float smIntVarHalf=0.5;
float smIntVarTemp3=0.0;
float smIntVarTemp=0.0;
float smIntVarTemp2=0.0;
float sig1=0;
float sig2=0;
float FM1=-1;
movaps xmm0,in;
mulps xmm0,pregain;
movaps sig1,xmm0;
movaps xmm0,FM1;
mulps xmm0,in;
movaps xmm1,xmm0;
mulps xmm1,pregain;
movaps sig2,xmm1;
movaps xmm0,smIntVarE;
movaps smIntVarTemp,xmm0;
movaps xmm0,sig1;
movaps smIntVarTemp2,xmm0;
fld smIntVarTemp2[0];
fld smIntVarTemp[0];
fyl2x;
fld st(0);
fld smIntVarHalf[0];
fsub;
frndint;
fxch;
fld st(1);
fsub;
f2xm1;
fld1;
fadd;
fxch;
fld1;
fscale;
fstp st(1);
fmul;
fstp smIntVarTemp3[0];
movaps xmm0,smIntVarTemp3;
movaps xmm1,smIntVarE;
movaps smIntVarTemp,xmm1;
movaps xmm1,sig2;
movaps smIntVarTemp2,xmm1;
fld smIntVarTemp2[0];
fld smIntVarTemp[0];
fyl2x;
fld st(0);
fld smIntVarHalf[0];
fsub;
frndint;
fxch;
fld st(1);
fsub;
f2xm1;
fld1;
fadd;
fxch;
fld1;
fscale;
fstp st(1);
fmul;
fstp smIntVarTemp3[0];
movaps xmm1,smIntVarTemp3;
subps xmm0,xmm1;
movaps xmm1,smIntVarE;
movaps smIntVarTemp,xmm1;
movaps xmm1,sig1;
movaps smIntVarTemp2,xmm1;
fld smIntVarTemp2[0];
fld smIntVarTemp[0];
fyl2x;
fld st(0);
fld smIntVarHalf[0];
fsub;
frndint;
fxch;
fld st(1);
fsub;
f2xm1;
fld1;
fadd;
fxch;
fld1;
fscale;
fstp st(1);
fmul;
fstp smIntVarTemp3[0];
movaps xmm1,smIntVarTemp3;
movaps xmm2,smIntVarE;
movaps smIntVarTemp,xmm2;
movaps xmm2,sig2;
movaps smIntVarTemp2,xmm2;
fld smIntVarTemp2[0];
fld smIntVarTemp[0];
fyl2x;
fld st(0);
fld smIntVarHalf[0];
fsub;
frndint;
fxch;
fld st(1);
fsub;
f2xm1;
fld1;
fadd;
fxch;
fld1;
fscale;
fstp st(1);
fmul;
fstp smIntVarTemp3[0];
movaps xmm2,smIntVarTemp3;
addps xmm1,xmm2;
divps xmm0,xmm1;
movaps out,xmm0;
User avatar
Yuroun
essemist
 
Posts: 86
Joined: Mon Dec 19, 2011 6:32 pm
Location: Tilburg, The Nethlands

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 8:43 am

thnx i try this.
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 8:47 am

exactually what does it do?
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Xtinct on Fri Jan 13, 2012 8:51 am

djbrynte wrote:Can you explain little bit better or show pic what you mean?

Hi heres a pic
Attachments
Sine Tri Feedback.png
Sine Tri Feedback.png (21.03 KiB) Viewed 2070 times
Xtinct
essemist
 
Posts: 184
Joined: Thu Feb 10, 2011 11:06 pm

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 9:02 am

thnx that was nice. But it did not make the sound im after.
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Yuroun on Fri Jan 13, 2012 9:05 am

djbrynte wrote:exactually what does it do?


Posted in wrong topic. It was ment for your distortion topic.
User avatar
Yuroun
essemist
 
Posts: 86
Joined: Mon Dec 19, 2011 6:32 pm
Location: Tilburg, The Nethlands

Re: How to make the oscilator sound more dirty?

Postby Xtinct on Fri Jan 13, 2012 9:28 am

djbrynte wrote:thnx that was nice. But it did not make the sound im after.

Try taking the output of the feedback and feeding it into the filter cutoff mod to dirty up the filter.
As I said the feedback only sounds good on sine / tri osc but the feed into filter will work for all waves.
Xtinct
essemist
 
Posts: 184
Joined: Thu Feb 10, 2011 11:06 pm

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 9:53 am

thnx for help can you show me pic pls.
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Xtinct on Fri Jan 13, 2012 10:15 am

djbrynte wrote:thnx for help can you show me pic pls.

Heres the pic.
I've used a seperate osc so you can choose the type of growl.
Attachments
Growl.png
Growl.png (82.57 KiB) Viewed 2022 times
Xtinct
essemist
 
Posts: 184
Joined: Thu Feb 10, 2011 11:06 pm

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 10:18 am

ok thnx i try that. The thing is i only get some sound when i have 10 on the volume on the amp.
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Re: How to make the oscilator sound more dirty?

Postby Xtinct on Fri Jan 13, 2012 11:12 am

djbrynte wrote:ok thnx i try that. The thing is i only get some sound when i have 10 on the volume on the amp.

Hi if you mean the growl amp its range should be 0 to 0.25
Xtinct
essemist
 
Posts: 184
Joined: Thu Feb 10, 2011 11:06 pm

Re: How to make the oscilator sound more dirty?

Postby djbrynte on Fri Jan 13, 2012 11:30 am

yes but i dont get any sound :S
djbrynte
smanatic
 
Posts: 831
Joined: Mon Jun 22, 2009 9:51 am
Location: Stockholm, Sweden

Next

Return to Sound

Who is online

Users browsing this forum: tiffy and 1 guest