Search found 59476 matches

by steve
Wed Feb 12, 2014 5:01 pm
Forum: Compiling Audacity
Topic: Compile error analyze.ny
Replies: 10
Views: 4957

Re: Compile error analyze.ny

analyze.ny has recently been removed from the source code (it was just a demonstration/example plug-in with no practical value). To ensure that you are starting with a clean source, run: make distclean then run: autoreconf --no-recursive to reconfigure the build options. If you have a problem with t...
by steve
Wed Feb 12, 2014 2:37 pm
Forum: Windows
Topic: 8 outputs audio card
Replies: 20
Views: 4030

Re: 8 outputs audio card

Hello, I bought the Soundcraft mixer, it's a real pleasure to use it. I use an old Cubase to send the tracks (same way as you, 4 stereo bus), but it's really boring to "export multiple" from Audacity... If some tracks are not starting from instant zero, you have to add a filled with zeros...
by steve
Wed Feb 12, 2014 2:30 pm
Forum: GNU/Linux
Topic: Guidance for nyquist coding
Replies: 6
Views: 3529

Re: Guidance for nyquist coding

steve wrote:please start a new topic on the Nyquist forum board (http://forum.audacityteam.org/viewforum.php?f=39)
by steve
Tue Feb 11, 2014 11:27 pm
Forum: Windows
Topic: Stereo to 5.1
Replies: 7
Views: 5097

Re: Stereo to 5.1

DVDdoug wrote: For normal 5.1 you should have:
Front left
Front center
Front right
Back left
Back right
LFE
and the correct order of the channels depends on the file format.
Details can be found on Wikipedia: http://en.wikipedia.org/wiki/Surround_sound
by steve
Tue Feb 11, 2014 11:23 pm
Forum: macOS
Topic: Improve Lecture Audio?
Replies: 5
Views: 1056

Re: Improve Lecture Audio?

If that is the best quality version that you have, then there's not much that can be done to improve it.
That file is a low quality 8 kbps MP3 file. The damage caused by MP3 compression cannot be repaired.
by steve
Tue Feb 11, 2014 11:19 pm
Forum: New Plug-Ins
Topic: wow & flutter spectrum analysis
Replies: 39
Views: 18605

Re: wow & flutter spectrum analysis

The 6kHz peak is of no concern for me, as the whole analysis is meant to be valid only up to roughly 1khz In which case you can just use a low-pass filter to remove it. About the FM demodulation, well might be I have something like a "concept" - well, surely nothing really thought through...
by steve
Tue Feb 11, 2014 11:16 pm
Forum: Windows
Topic: Truncate Silence Still has old interface
Replies: 1
Views: 618

Re: Truncate Silence Still has old interface

You're looking at the manual for the new, not yet released Audacity 2.0.6 alpha. When 2.0.6 alpha is ready for release it will be released as Audacity 2.0.6. The correct manual for Audacity 2.0.5 (the current release version) is here: http://manual.audacityteam.org/o/ and the page for Truncate Silen...
by steve
Tue Feb 11, 2014 11:09 pm
Forum: New Plug-Ins
Topic: wow & flutter spectrum analysis
Replies: 39
Views: 18605

Re: wow & flutter spectrum analysis

The 3,15kHz carrier is completely suppressed but that spike at around 6.3 kHz is (the_carrier x the_carrier). The signal that represents the "wow" is the low frequency component. To eliminate the carrier, try a notch filter: (notch2 sig 6300 1) http://www.cs.cmu.edu/~rbd/doc/nyquist/part8...
by steve
Tue Feb 11, 2014 10:23 pm
Forum: New Plug-Ins
Topic: wow & flutter spectrum analysis
Replies: 39
Views: 18605

Re: wow & flutter spectrum analysis

The problem is that the function snd-fetch destroys the sound samples. http://www.cs.cmu.edu/~rbd/doc/nyquist/part8.html#index260 Snd-fetch is used in the function (defun count-samples (sig crossings) To avoid the problem, when you call count-samples ensure that you pass a copy of "s" and ...
by steve
Tue Feb 11, 2014 9:28 pm
Forum: New Plug-Ins
Topic: wow & flutter spectrum analysis
Replies: 39
Views: 18605

Re: wow & flutter spectrum analysis

mige0 wrote:Why is it, that I cant write something like that:
(setq carrierfreq (/ (* cycles *sound-srate*) sample-count))

Instead of the "print" command
You can. That looks perfectly valid.