
Hi, I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the best way to do it? Ideally I just want something that clips a waveform when it exceeds x or -x. Even better if the "corner" is somewhat rounded, but not necessary. I thought there might be a simple "Clip" UGen but it doesn't seem to exist. By the way, on a similar topic, what happens exactly when the signal input in "dac" exceeds [-1,1]? It doesn't really sound like clipping to me, so is it integer wrapping? I find my audio output significantly degrades (i.e., sound pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct range. Steve (currently working on my first chuck-related music performance!)

Hi Steve,
I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the best way to do it?
Can you show your patch? Clipping involves waveshaping, so you should know the expression of the clipping function (i.e. x-x^3/3) and substitute x with audio samples. Possibly, with GenX functions you could multiply your samples at time t with your GenX sample at time t but you should hardclip your output so it does not exceed 1. Otherwise you get unexpected behaviour as you say: <quote>
I find my audio output significantly degrades (i.e., sound pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct range. <quote>
You could try this. Don't know if it's the best way, but it's some way... fun float softclip( float x ) { if( x > 1. ) return 2./3.; if( x < -1. ) return -2./3.; return x-x*x*x/3.; } fun float hardclip( float x ) { if( x < -1. ) return -1.; if( x > 1. ) return 1.; return x; } adc => Impulse imp => Gain vol => dac; 10 => adc.gain; // pre amplifying input signal, Change accordingly 1./adc.gain() => vol.gain; // keep same headroom. you can skip this. while( now < later ) { hardclip( adc.last() ) => imp.next; // softclip( adc.last() ) => imp.next 1::samp => now; } Plug-in your guitar, now! There may be some errors, as I have not execute the patch. Alternatively, you may use atan(x) for waveshaping instead of x-x^3/3. hope it helps, eduard

Hello list, I am trying to reproduce the piece "I am sitting in a room" by Alvin Lucier using either sndbuf or WvIn to play the recorded signal and WvOut to record the audio signal. However I get annoying clicks as it is usual with sndbuf and WvIn ugens. Does anyone have a suggestion for avoiding such clicks? Maybe Lisa would be better? (it's on my list, but still haven't played with Lisa..) Thanks in advance, eduard

Hello,
For "I am sitting in a room", I suggest you just use a delay; no internal
feedback loop, just adc => delay => dac. Of course, if you want to record
it as well, that is separate, and you'll probably also want to have a quick
way of dropping adc gain (maybe on your preamp rather than in software) for
when the feedback gets out of hand.
Hope that helps,
Peter
On Dec 15, 2007 10:26 AM, eduard aylon
Hello list,
I am trying to reproduce the piece "I am sitting in a room" by Alvin Lucier using either sndbuf or WvIn to play the recorded signal and WvOut to record the audio signal. However I get annoying clicks as it is usual with sndbuf and WvIn ugens. Does anyone have a suggestion for avoiding such clicks? Maybe Lisa would be better? (it's on my list, but still haven't played with Lisa..)
Thanks in advance,
eduard
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

Thanks Peter, this is a much better and a more elegant way to implement it. cheers, eduard On Dec 15, 2007, at 3:00 PM, Peter Todd wrote:
Hello,
For "I am sitting in a room", I suggest you just use a delay; no internal feedback loop, just adc => delay => dac. Of course, if you want to record it as well, that is separate, and you'll probably also want to have a quick way of dropping adc gain (maybe on your preamp rather than in software) for when the feedback gets out of hand.
Hope that helps, Peter
On Dec 15, 2007 10:26 AM, eduard aylon
wrote: Hello list, I am trying to reproduce the piece "I am sitting in a room" by Alvin Lucier using either sndbuf or WvIn to play the recorded signal and WvOut to record the audio signal. However I get annoying clicks as it is usual with sndbuf and WvIn ugens. Does anyone have a suggestion for avoiding such clicks? Maybe Lisa would be better? (it's on my list, but still haven't played with Lisa..)
Thanks in advance,
eduard
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

For "I am sitting in a room", I suggest you just use a delay; no internal feedback loop, just adc => delay => dac. Of course, if you want to record it as well, that is separate, and you'll probably also want to have a quick way of dropping adc gain (maybe on your preamp rather than in software) for when the feedback gets out of hand.
I read this thread and downloaded the original Lucier piece, which I found quite haunting. And then I could achieve a similar effect by simply changing the delay.ck example time lapse to 75 seconds: // patch adc => DelayL delay => dac; // set delay parameters 75::second => delay.max => delay.delay; // infinite time loop while( true ) 1::second => now; I'm a novice at sound/ChucK. So I guess that my room is resonating, and the drone that develops after 10-15 minutes is my speakers screaming at the mic. There are still some bizarre patterns though. Sounds of my shower etc. It's all quite surreal. Now I want to control this drone in some way because it gets quite monotonous, and I want to trigger some mp3 cuts when certain frequencies are encountered. I'll figure all this out, just sharing my experience. I also want to keep the final code less than 100 lines. Lets see! Very excited now. ------- -.- 1/f ))) --. ------- ... http://www.algomantra.com

On Dec 17, 2007 7:33 AM, AlgoMantra
I'm a novice at sound/ChucK. So I guess that my room is resonating, and the drone that develops after 10-15 minutes is my speakers screaming at the mic. There are still some bizarre patterns though. Sounds of my shower etc. It's all quite surreal.
At the risk of sounding corny, it's all very very real; it's just that you need to adjust your concept of reality ;-)
Now I want to control this drone in some way because it gets quite monotonous, and I want to trigger some mp3 cuts when certain frequencies are encountered. I'll figure all this out, just sharing my experience. I also want to keep the final code less than 100 lines.
Well, for keeping to less than 100 lines, I think you've chosen the right language. Have fun, Peter

On Dec 17, 2007 7:33 AM, AlgoMantra
wrote: I'm a novice at sound/ChucK. So I guess that my room is resonating, and the drone that develops after 10-15 minutes is my speakers screaming at the mic. There are still some bizarre patterns though. Sounds of my shower etc. It's all quite surreal.
At the risk of sounding corny, it's all very very real; *it's just that you*
*need to adjust your concept of reality ;-)*
Sir, I try not to adjust the concept, but reality itself. :) ------- -.- 1/f ))) --. ------- ... http://www.algomantra.com

Hi steve there is a long thread with some examples on the forum. look here: http://electro-music.com/forum/viewtopic.php?t=19287 hope this help.. /moudi
-----Ursprüngliche Nachricht----- Von: chuck-users-bounces@lists.cs.princeton.edu [mailto:chuck-users-bounces@lists.cs.princeton.edu] Im Auftrag von Stephen Sinclair Gesendet: Samstag, 15. Dezember 2007 00:29 An: ChucK Users Mailing List Betreff: [chuck-users] simple distortion/clipping
Hi,
I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the best way to do it?
Ideally I just want something that clips a waveform when it exceeds x or -x. Even better if the "corner" is somewhat rounded, but not necessary. I thought there might be a simple "Clip" UGen but it doesn't seem to exist.
By the way, on a similar topic, what happens exactly when the signal input in "dac" exceeds [-1,1]? It doesn't really sound like clipping to me, so is it integer wrapping? I find my audio output significantly degrades (i.e., sound pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct range.
Steve (currently working on my first chuck-related music performance!) _______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

Hi,
Thanks for that reference! Tons of good ideas there..
I never even thought of checking the online forum since I much prefer
the mailing list and always forget there is another place where people
discuss chuck.. :)
Good to know, for example, that you can chuck into a SinOsc, I didn't
even know that. Time to read the documentation and examples all over
again.
eduard: thanks, I should have specified that I didn't want to do this
in a single-sample loop. (usually a bad idea if you're worried about
CPU usage..)
ps. also i didn't know there was a ".op" parameter for Gain. It seems
to not be on the reference page:
http://chuck.cs.princeton.edu/doc/program/ugen_full.html#gain
cheers,
steve
On Dec 15, 2007 10:36 AM, Leuthold Dominik
Hi steve
there is a long thread with some examples on the forum. look here: http://electro-music.com/forum/viewtopic.php?t=19287
hope this help.. /moudi
-----Ursprüngliche Nachricht----- Von: chuck-users-bounces@lists.cs.princeton.edu [mailto:chuck-users-bounces@lists.cs.princeton.edu] Im Auftrag von Stephen Sinclair Gesendet: Samstag, 15. Dezember 2007 00:29 An: ChucK Users Mailing List Betreff: [chuck-users] simple distortion/clipping
Hi,
I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the best way to do it?
Ideally I just want something that clips a waveform when it exceeds x or -x. Even better if the "corner" is somewhat rounded, but not necessary. I thought there might be a simple "Clip" UGen but it doesn't seem to exist.
By the way, on a similar topic, what happens exactly when the signal input in "dac" exceeds [-1,1]? It doesn't really sound like clipping to me, so is it integer wrapping? I find my audio output significantly degrades (i.e., sound pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct range.
Steve (currently working on my first chuck-related music performance!)
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

that's because *all* ugens of the .op method. i can't remember where, but it is in the manual, and is super useful! dan
ps. also i didn't know there was a ".op" parameter for Gain. It seems to not be on the reference page: http://chuck.cs.princeton.edu/doc/program/ugen_full.html#gain
cheers, steve
On Dec 15, 2007 10:36 AM, Leuthold Dominik
wrote: Hi steve
there is a long thread with some examples on the forum. look here: http://electro-music.com/forum/viewtopic.php?t=19287
hope this help.. /moudi
-----Ursprüngliche Nachricht----- Von: chuck-users-bounces@lists.cs.princeton.edu [mailto:chuck-users-bounces@lists.cs.princeton.edu] Im Auftrag von Stephen Sinclair Gesendet: Samstag, 15. Dezember 2007 00:29 An: ChucK Users Mailing List Betreff: [chuck-users] simple distortion/clipping
Hi,
I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the
best> > way to do it?
Ideally I just want something that clips a waveform when it exceeds x or -x. Even better if the "corner" is somewhat rounded, but not
necessary.> > I thought there might be a simple "Clip" UGen but it doesn't> > seem to exist.
By the way, on a similar topic, what happens exactly when the
signal> > input in "dac" exceeds [-1,1]?
It doesn't really sound like clipping to me, so is it integer wrapping? I find my audio output significantly degrades (i.e., sound> > pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct> > range.
Steve (currently working on my first chuck-related music performance!)
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

Cools, thanks it's in the Language Reference.
Never noticed it before.
cheers,
Steve
On Dec 15, 2007 12:33 PM, Daniel L Trueman (dtrueman@Princeton.EDU)
that's because *all* ugens of the .op method. i can't remember where, but it is in the manual, and is super useful!
dan
ps. also i didn't know there was a ".op" parameter for Gain. It seems to not be on the reference page: http://chuck.cs.princeton.edu/doc/program/ugen_full.html#gain
cheers, steve
On Dec 15, 2007 10:36 AM, Leuthold Dominik
wrote: Hi steve
there is a long thread with some examples on the forum. look here: http://electro-music.com/forum/viewtopic.php?t=19287
hope this help.. /moudi
-----Ursprüngliche Nachricht----- Von: chuck-users-bounces@lists.cs.princeton.edu [mailto:chuck-users-bounces@lists.cs.princeton.edu] Im Auftrag von Stephen Sinclair Gesendet: Samstag, 15. Dezember 2007 00:29 An: ChucK Users Mailing List Betreff: [chuck-users] simple distortion/clipping
Hi,
I've been trying to figure out how to do some simple distortion / clipping in Chuck. I'm not sure I fully understand the GenX objects. Is this the
best> > way to do it?
Ideally I just want something that clips a waveform when it exceeds x or -x. Even better if the "corner" is somewhat rounded, but not
necessary.> > I thought there might be a simple "Clip" UGen but it doesn't> > seem to exist.
By the way, on a similar topic, what happens exactly when the
signal> > input in "dac" exceeds [-1,1]?
It doesn't really sound like clipping to me, so is it integer wrapping? I find my audio output significantly degrades (i.e., sound> > pops, goes silent, or makes strange unpleasant noises) when I exceed this limit, so I always have to fight to keep it within the correct> > range.
Steve (currently working on my first chuck-related music performance!)
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users
_______________________________________________ chuck-users mailing list chuck-users@lists.cs.princeton.edu https://lists.cs.princeton.edu/mailman/listinfo/chuck-users

On 15/12/2007, Stephen Sinclair
Hi,
Thanks for that reference! Tons of good ideas there.. I never even thought of checking the online forum since I much prefer the mailing list and always forget there is another place where people discuss chuck.. :)
I suppose I should respond to that since I should probably get some of the blame (and possible credit) for the situation. It turns out that there are people who prefer a forum and others prefer a list while yet others (like me) think both are nice in different ways. Somehow it looks like the forum appears more accessible to people who are just starting out or are considering to jump in. The forum -so far- also seems more conductive to colaborations, while the list tends to be more in-depth on a technological level especially once the bugs hit the fan. I believe there is (was?) also a ICQ channel as well but personally I don't like chat all that much, still that channel spawned the "one line game" so that's already quite worthwhile. Oh, and we have a WiKi too which is turning out to be quite good for centralised bug-fix and feature requests. I think this is a good situation, much like it's good to have plain ChucK and two Audicles (and ~chuck and.....?) but the price is indeed that there may be confusion from time to time. Perhaps in the future there will be some sort of communication method that combines all of the above system's strong points as well as a public shared VM capable of streaming for online jam-sessions but until then I think that so far the price is worth the gains. I'll be the last to tell anyone who doesn't like fora to subscribe to one but I would like to point out that generally it's considered rude to send larger attachments to lists while the forum gives all members a "allowance" for file uploads so if you'd like to share larger files it may be a good option. Yours, Kas
participants (7)
-
AlgoMantra
-
Daniel L Trueman (dtrueman@Princeton.EDU)
-
eduard aylon
-
Kassen
-
Leuthold Dominik
-
Peter Todd
-
Stephen Sinclair