Search found 338 matches

by edgar-rft
Wed Apr 13, 2011 9:25 pm
Forum: Nyquist
Topic: Vibrato Nyquist script
Replies: 18
Views: 8966

Re: Vibrato Nyquist script

Newbis: I'm seeing "s" in a lot of the plugins. I'm guessing "s" is what allows the code to refer to the existing sound that's being modified? The "s" variable is the sound object given from the Audacity Nyquist interface to the Nyquist interpreter, see Nyquist Variables . Unfortunately the Audacit...
by edgar-rft
Wed Apr 13, 2011 5:24 pm
Forum: Nyquist
Topic: Vibrato Nyquist script
Replies: 18
Views: 8966

Re: Vibrato Nyquist script

Sorry, not mucht time yet, but maybe this helps: The Nyquist FMOSC can take a wavetable as argument. If you turn the Audacity "s" sound into a wavetable (or two wavetables with a stereo sound) then FMOSC can do an LFO-controlled frequency modulation (= vibrato) with it. If a second FMOSC is used as ...
by edgar-rft
Wed Apr 13, 2011 5:20 am
Forum: General Audio Programming
Topic: Merge/Interleave two WAV files...
Replies: 3
Views: 3436

Re: Merge/Interleave two WAV files...

celoftis: ... do you have any suggestions on how to approach this task?
See http://sox.sourceforge.net/, i.e. libsox, also the sox "-m" option and the "mixer" effect.
by edgar-rft
Wed Apr 13, 2011 5:10 am
Forum: General Audio Programming
Topic: any good oscilloscope programs out there (free?) ?
Replies: 3
Views: 5368

Re: any good oscilloscope programs out there (free?) ?

See http://www.hitsquad.com/smm/cat/OSCILLOSCOPES/ [hitsquad = free- and shareware search engine, no commercial link] Note that the main reason why soundcard-oscilloscope software today is not developed anymore is that with standard 16-bit soundcards the sample frequency is too low and the s/n-ratio...
by edgar-rft
Wed Apr 13, 2011 4:08 am
Forum: Nyquist
Topic: Wish List: Find Maximum
Replies: 5
Views: 5674

Re: Wish List: Find Maximum

I'm sorry to tell but I think here is a general misunderstanding what Nyquist in Audacity can do and what not. Nyquist has no access to the Audacity GUI, so there is no way to pop up a "Dialog Box 2" or to highlight parts of the waveform with Nyquist in Audacity. If you choose a Nyquist Plugin, then...
by edgar-rft
Fri Mar 11, 2011 8:18 pm
Forum: Plug-in Archive
Topic: Elliptical Equalizer (mono crossfeed filter)
Replies: 15
Views: 16508

Re: Elliptical Equalizer (mono crossfeed filter)

Jvo: Imagine you display a stereo signal on an oscilloscope in x-y mode ... if there is just one signal in one channel the display shows a simple line ... if you insert the elliptical equalizer into the signal path the picture changes to an ellipse due to the phase shifts introduced. Thanks, that's...
by edgar-rft
Fri Mar 11, 2011 6:19 pm
Forum: Plug-in Archive
Topic: Elliptical Equalizer (mono crossfeed filter)
Replies: 15
Views: 16508

Re: Elliptical Equalizer (mono crossfeed filter)

Here is what happens if Germans try to use English language: Preface: Somewhere in the early 2000s the German commercials department of a famous fashion manufacturer (no names here) came in a fit of "everything today sells much better with an english name" to the not really well-thought idea to offe...
by edgar-rft
Thu Mar 10, 2011 8:38 pm
Forum: Nyquist
Topic: Peak finder
Replies: 9
Views: 4054

Re: Peak finder

steve: I don't think that *scratch* can hold sounds can it? Obama says: yes, we can! ;; store a sound in *scratch* (let ((len (round len))) (setq *scratch* (snd-fetch-array s len len))) ;; read a sound from *scratch* (snd-from-array 0.0 *sound-srate* *scratch*) A Nyquist "sound" object is a pointer...
by edgar-rft
Wed Mar 09, 2011 7:30 pm
Forum: Nyquist
Topic: Peak finder
Replies: 9
Views: 4054

Re: Peak finder

Everything looks as if Steve is right and you just simply can't do this with Nyquist in Audacity. Mixing the tracks via *scratch* and then finding the peak afterwards would be the only other way to get the desired result, but this will surely crash Audacity if the tracks are longer than a few seconds.
by edgar-rft
Wed Mar 09, 2011 6:41 pm
Forum: Nyquist
Topic: Peak finder
Replies: 9
Views: 4054

Re: Peak finder

You could store the (peak s) value in *scratch* and then compare it to the (peak s) value of all subsequent tracks but I'm afraid that Audacity then will start to allocate memory for all tracks together and crash, but haven't tested this yet.