Search found 15 matches

by pedrodx
Fri Feb 06, 2009 4:01 am
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi, steve! Here is the code, as it is now! ;nyquist plug-in ;version 3 ;type process ;categories "http://audacityteam.org/namespace#Distortion" ;name "ASmooth by Threshold..." ;action "Zapping your audio..." ;info "By pedrodx and stevethefiddle..." ;control thr-type "Smooth samples" choice "below T1...
by pedrodx
Wed Jan 28, 2009 7:05 pm
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi, stevethefiddle! Check this one... It's a plus... Instead zeroing the particular samples, it perform some kind of offset math, between the old value of the sample and the values of the thresholds....... I think it is great to avoid the high slopes, found on the usual method........ btw, sorry if ...
by pedrodx
Wed Jan 28, 2009 4:11 pm
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi, stevethefiddle!! I applied a low pass filter and, then, a high pass filter... Both of these were of first order, and were controlled by the user (cutoff frequencies)...... :) ;nyquist plug-in ;version 3 ;type process ;categories "http://audacityteam.org/namespace#Distortion" ;name "ASample Zerif...
by pedrodx
Tue Jan 27, 2009 10:03 pm
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi! I'm here again... :) I've tried some memory optimization, and it was good asap to know you've got ideas about it... Here is my last code...... It brokes in a strange way, I'm using the debug now...... But in short, I didn't saw your last posts, sorry!! :roll: I'll do something maybe today by nig...
by pedrodx
Fri Jan 23, 2009 10:35 pm
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi, stevethefiddle!! This is what I got, when trying to allow memory optimization: ;nyquist plug-in ;version 3 ;type process ;categories "http://audacityteam.org/namespace#Distortion" ;name "AAASample Zerifier-v2..." ;action "Zapping your audio..." ;info "By pedrodx and stevethefiddle..." ;control t...
by pedrodx
Fri Jan 23, 2009 7:17 pm
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hi, stevethefiddle! Sorry I didn't answer before... I was busy with other things too... So, when I got back home after a while, I will be concentrated on adding to the plugin the snd-follow feature... I already take a look, and it seems it would smooth well around the threshold regions.... Adding to...
by pedrodx
Tue Jan 20, 2009 2:43 am
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Enjoy!! ;nyquist plug-in ;version 3 ;type process ;categories "http://audacityteam.org/namespace#Distortion" ;name "Sample Zerifier..." ;action "Zapping your audio..." ;info "By pedrodx and stevethefiddle... TODO: be sure that thr2 is greater than thr1. If not, output error message... Need help..." ...
by pedrodx
Tue Jan 20, 2009 2:05 am
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Great, stevethefiddle!! :D We could make it generic, as it could distorts samples below a threshold, higher or between two thresholds..... What happens most times is that I imagine how the effect could be applied (i.e., mathematically), but I do not provide a formal name to my "invention", hehehe St...
by pedrodx
Tue Jan 13, 2009 2:33 am
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Hey! Look at this fresh script I coded.... It works only on mono sounds.... Details are explained on it... Thanks, stevethefiddle! :D ;nyquist plug-in ;version 1 ;type process ;name "Zero if Below Threshold..." ;action "Zero samples lower than a threshold..." ;info "By Pedrodx, based on script examp...
by pedrodx
Tue Jan 13, 2009 12:40 am
Forum: General Audio Programming
Topic: Help with iteration functions in Nyquist
Replies: 15
Views: 4489

Re: Help with iteration functions in Nyquist

Thanks, stevethefiddle! I'll try that code! :)