Search found 4 matches

by janolap1
Mon Nov 05, 2012 11:54 pm
Forum: New Plug-Ins
Topic: Help needed to create a plugin for fixing dv clicks
Replies: 10
Views: 5429

Re: Help needed to create a plugin for fixing dv clicks

Hi and thank you ! You're great. Using robert's code, the effect expected is not reached. I have adapted Steve code like this to make it work on my sample : ; limit selection to 100,000 samples (setq max-samples (min 100000 (truncate len))) ;;; Function to correct zero samples (defun correct (sig) ;...
by janolap1
Sun Nov 04, 2012 8:19 pm
Forum: New Plug-Ins
Topic: Help needed to create a plugin for fixing dv clicks
Replies: 10
Views: 5429

Re: Help needed to create a plugin for fixing dv clicks

Hi, To answer Koz, my dv cam is pretty old. But I think there's a problem with the 16bit audio recording. Maybe a problem with the tape. I have to investigate further. The sample code of Robert : I think, being a newbie with Nyquist langage, that you create a sound from the array and try to correct ...
by janolap1
Sun Nov 04, 2012 10:21 am
Forum: New Plug-Ins
Topic: Help needed to create a plugin for fixing dv clicks
Replies: 10
Views: 5429

Re: Help needed to create a plugin for fixing dv clicks

Thank you for all those replies... There was an error in my pseudo code : for $i=0 to numberOfSample(selection)-1 { if (($i>0) and ($i<numberOfSample(selection)-1)) then { if (getdbSample(selection, $i) ==0) { putdbSample(selection, $i, (getdbSample(selection, $i-1)+getdbSample(selection, $i+1))/2);...
by janolap1
Sat Nov 03, 2012 8:28 pm
Forum: New Plug-Ins
Topic: Help needed to create a plugin for fixing dv clicks
Replies: 10
Views: 5429

Help needed to create a plugin for fixing dv clicks

Hi, I'm really new in those forums, but I have used Audacity for years. I have a problem with a audio track from my dv camcorder (mini-dv sd). Here is the problem : from time to time, during the video, the sound makes a sort of "click". When I import the sound of the video inside audacity,...