Search found 59476 matches

by steve
Tue May 21, 2019 1:41 pm
Forum: General Audio Programming
Topic: mod-script-pipe
Replies: 25
Views: 13384

Re: mod-script-pipe

There's an error in pipeclient.py (it appears that someone "corrected" my original script and introduced a bug).
Line 211 should be:

Code: Select all

while line != '\n':
by steve
Tue May 21, 2019 7:59 am
Forum: Windows
Topic: Tascam DP-24sd - Raising Volume
Replies: 3
Views: 241

Re: Tascam DP-24sd - Raising Volume

DVDdoug wrote:
Tue May 21, 2019 7:14 am
I don't remember if the Normalization effect defaults to 0dB or near 0dB
It defaults to -1 dB (as shown here: https://manual.audacityteam.org/man/normalize.html), which provides just a tiny bit of headroom for safety.
by steve
Tue May 21, 2019 2:04 am
Forum: Windows
Topic: Trying to get my head around noise floor
Replies: 6
Views: 426

Re: Trying to get my head around noise floor

To measure "sound pressure level", you need an SPL meter (Sound Pressure Level): https://en.wikipedia.org/wiki/Sound_level_meter
You can get a cheap one from ebay for under $20, but an SPL meter that is accurate for low level noise isn't cheap (often costing hundreds or thousands of $)
by steve
Tue May 21, 2019 1:50 am
Forum: Windows
Topic: Trying to get my head around noise floor
Replies: 6
Views: 426

Re: Trying to get my head around noise floor

"dB" is a "ratio", not a "unit". Unlike units such as grams, or seconds, or miles, a "dB" is not a fixed quantity, but the ratio of one quantity compared to another. "dB" is meaningless without a reference point. When dealing with audio signals, it i...
by steve
Tue May 21, 2019 12:59 am
Forum: macOS
Topic: FFmpeg Library Download button broken
Replies: 1
Views: 95

Re: FFmpeg Library Download button broken

Which version of Audacity are you using? (Look in "Audacity menu > About Audacity")
What web page does it go to?
by steve
Mon May 20, 2019 11:49 pm
Forum: Windows
Topic: Audacity 2.3.2 - Some M4A Files Unreadable
Replies: 5
Views: 270

Re: Audacity 2.3.2 - Some M4A Files Unreadable

It's a bug in iTunes. Which version are you using?
They've fixed the problem for Macs in version 12.9.5.5
by steve
Mon May 20, 2019 9:43 pm
Forum: Windows
Topic: raw import
Replies: 2
Views: 146

Re: raw import

Text files are ASCII encoded (http://www.asciitable.com/), so when you have a file containing 0.99 0.99 -0.99 -0.99 the actual data in the file is the byte values of the characters "0", ".", "9", "9", "new line", "0",.... The byte values ca...
by steve
Mon May 20, 2019 8:47 pm
Forum: General Audio Programming
Topic: mod-script-pipe
Replies: 25
Views: 13384

Re: mod-script-pipe

I've discovered some peculiarities in the behaviour of mod-script-pipe in recent versions of Audacity, but I'm not able to progress further diagnosing the problem that you describe Gibbz without further information about what you are using and what you are doing.
by steve
Mon May 20, 2019 8:43 pm
Forum: Windows
Topic: Help - Automatically Clipping at -6 db when recording
Replies: 17
Views: 891

Re: Help - Automatically Clipping at -6 db when recording

Is Audacity merely trying to make it "easier" for its users? This isn't due to anything that Audacity is doing. It's a "feature" of the sound card drivers. because Adobe Audition is not performing this way with all the same settings Audition is most probably using different driv...
by steve
Mon May 20, 2019 8:24 pm
Forum: Nyquist
Topic: Notch filter with loop
Replies: 45
Views: 6868

Re: Notch filter with loop

You type 100 and it adjusts 100, 200, 300, 400, etc right up to the sample rate, So that is adding 100 on each loop, where "fc = 100". (do* ((hz fc (+ hz fc)) I wonder if it's possible to adjust in this case: 100, 300, 500, 700, etc, skipping the even order harmonics. and that is adding 2...