Search found 59476 matches

by steve
Thu Jul 15, 2010 4:36 pm
Forum: Windows
Topic: Cannot Use Effects
Replies: 7
Views: 734

Re: Cannot Use Effects

The "Sensitivity" control is a new feature that is currently only available in the alpha version of Audacity. The alpha version is not recommended for general use as it contains new features that have not been adequately tested for suitability in a release version. If you are not already u...
by steve
Thu Jul 15, 2010 4:31 pm
Forum: General Audio Programming
Topic: How to compute SPL from sound inputed from a microphone.
Replies: 42
Views: 50694

Re: How to compute SPL from sound inputed from a microphone.

endolith wrote:That's a rather roundabout way of doing it
Worse than that, it's wrong :o (though the method is correct for measuring peak offset).
endolith wrote:Can I re-implement the snd-avg function but without the absolute value part?

Code: Select all

(peak (snd-avg ...... op-average) maxlen) 
Yes, that's the way to do it.
by steve
Thu Jul 15, 2010 4:27 pm
Forum: Windows
Topic: Trouble recording in stereo with external mic.
Replies: 5
Views: 1501

Re: Trouble recording in stereo with external mic.

i thought someone here said once that that plug was mono only so it could never record stereo even if it were a stereo mike plugged in Some laptops have only a mono microphone socket. If the microphone input is mono, then it can not record stereo through that socket. The audio input socket on an Ac...
by steve
Thu Jul 15, 2010 4:18 pm
Forum: Recording Equipment
Topic: Analog vs. Digital
Replies: 14
Views: 2884

Re: Analog vs. Digital

There's a lot of great, cheap digital gear out there now but I wonder if analog would add something. The main thing that it will add is hiss. Analogue 4 track recorders can be handy if you have them permanently set up so that you can start recording with no more fuss than switch on and press record...
by steve
Thu Jul 15, 2010 4:13 pm
Forum: Recording Equipment
Topic: Two Mics
Replies: 3
Views: 1053

Re: Two Mics

alfijane wrote:as far as I can tell I can only pick one input device
That is correct. Audacity can only record from one USB microphone at a time.
by steve
Wed Jul 14, 2010 11:30 pm
Forum: General Audio Programming
Topic: Track sampling rate question.
Replies: 11
Views: 5600

Re: Track sampling rate question.

mszlazak has not posted on the forum for over a year.
by steve
Wed Jul 14, 2010 11:27 pm
Forum: Windows
Topic: Cannot Use Effects
Replies: 7
Views: 734

Re: Cannot Use Effects

Do you mean all of the effects, or just some of the effects? What operating system are you using? The old 1.2.6 version of Audacity is known to have problems on modern operating systems such as Vista and Windows 7. Do you have some audio selected? (Ctrl+A should select all of the audio). Has it ever...
by steve
Wed Jul 14, 2010 10:59 pm
Forum: Windows
Topic: Cannot Use Effects
Replies: 7
Views: 734

Re: Cannot Use Effects

Make sure that Audacity is in "Stop" mode and not just "Paused". Effects are only available when stopped.
by steve
Wed Jul 14, 2010 10:15 pm
Forum: General Audio Programming
Topic: How to compute SPL from sound inputed from a microphone.
Replies: 42
Views: 50694

Re: How to compute SPL from sound inputed from a microphone.

Yes, but if someone measures a wave with a strong .1 Hz component in it, it should be measured. Probably not for the A-weighted measurement. The link you posted http://en.wikipedia.org/wiki/File:Acoustic_weighting_curves.svg implies that A-weighting is only defined from 20 Hz to 20 kHz. I want to r...
by steve
Wed Jul 14, 2010 9:22 pm
Forum: General Audio Programming
Topic: How to compute SPL from sound inputed from a microphone.
Replies: 42
Views: 50694

Re: How to compute SPL from sound inputed from a microphone.

I mean the other two tools I'm comparing to OK, I understand. When you use the A-weighting filter, that will automatically remove DC off-set due to the high-pass filter stages. For the peak and flat-rms measurements you could just apply a high-pass filter with a suitably low frequency. (setf s (hp ...