Artificial wow and flutter
Forum rules
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
Artificial wow and flutter
Good day
I know that there is a software that can remove wow and flutter from samples recorded from a tape or vinyl (for example Capstan). But I wonder whether there is a software that, conversely, can create artificial wow and flutter (I really need that for some sound processing). I don't think it's possible with Audacity, but probably you could give me an advise of other ways to do it.
Thanks
I know that there is a software that can remove wow and flutter from samples recorded from a tape or vinyl (for example Capstan). But I wonder whether there is a software that, conversely, can create artificial wow and flutter (I really need that for some sound processing). I don't think it's possible with Audacity, but probably you could give me an advise of other ways to do it.
Thanks
Re: Artificial wow and flutter
How about adding a Time Track, and give it a wiggly envelope? (see: http://manual.audacityteam.org/o/man/time_tracks.html)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Artificial wow and flutter
Thanks, that's a good idea. But the only thing is that if I have even a 5 minute record and the flutter should be about 20 Hz then I have to manually envelope all time track every 0,2 second which is really boring. Is there a way of using preloaded patterns for time tracks?
Re: Artificial wow and flutter
Try pasting this code into the Nyquist Prompt effect and applying it:
Code: Select all
;; speed is in rpm
(setf depth 0.004)
(setf speed 45)
(multichan-expand #'snd-tapv *track* 0 (mult depth (sum 1 (hzosc (/ speed 60.0)))) 2)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Artificial wow and flutter
It says "Nyquist returned the value: 45". Nyquist output is as follows:
Code: Select all
error: unbound variable - *
if continued: try evaluating symbol again
1>Re: Artificial wow and flutter
Sorry, it says "unbound variable - *TRACK*", not "*"
Re: Artificial wow and flutter
Assuming that you are using the current Audacity version 2.1.1, ensure that "Use legacy (version 3) syntax" is not selected (see http://manual.audacityteam.org/o/man/ny ... rompt.html)
(The current version of Audacity is available here: http://web.audacityteam.org/download/)
(The current version of Audacity is available here: http://web.audacityteam.org/download/)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Artificial wow and flutter
Your "Tremolo/Vibrato" plug-in will do that (on vibrato), but has the added advantage that users can select to have the rate gradually change over time.steve wrote:Try pasting this code into the Nyquist Prompt effect and applying it:Code: Select all
;; speed is in rpm (setf depth 0.004) (setf speed 45) (multichan-expand #'snd-tapv *track* 0 (mult depth (sum 1 (hzosc (/ speed 60.0)))) 2)
Re: Artificial wow and flutter
Unfortunately the "Tremolo/Vibrato" plug-in is not suitable for long sections of audio because cumulative rounding errors (it's only 32 bit) cause the sound quality to deteriorate when applied to selections much more than a few tens of seconds.Trebor wrote: Your "Tremolo/Vibrato" plug-in will do that (on vibrato), but has the added advantage that users can select to have the rate gradually change over time.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Artificial wow and flutter
And in the following code:
by which parameters can I change the frequency and intensity of flutter?
Code: Select all
;; speed is in rpm
(setf depth 0.004)
(setf speed 45)
(multichan-expand #'snd-tapv *track* 0 (mult depth (sum 1 (hzosc (/ speed 60.0)))) 2)