Search found 59476 matches

by steve
Thu Jul 31, 2014 2:09 am
Forum: General Audio Programming
Topic: Noise removal "tinklebells" and how to fix them
Replies: 23
Views: 11363

Re: Noise removal "tinklebells" and how to fix them

The level of satisfaction seems to be very dependent on how much the user is expecting of the effect (the main reason why raising expectations with the name Noise "Removal" is a bad idea imo). For reducing gentle hiss from a reasonably good "home studio" recording, I find the cur...
by steve
Thu Jul 31, 2014 1:10 am
Forum: Audio Processing
Topic: What is the standard RMS value for music?
Replies: 22
Views: 6993

Re: What is the standard RMS value for music?

Black Dog Bluez wrote: --so far much better than stats.ny for measuring RMS
Is that just because it doesn't have the 30 second limitation, or are there other advantages?
Do the RMS measurements agree with stats.ny?
by steve
Thu Jul 31, 2014 1:05 am
Forum: Windows
Topic: Playing sound in never ending loop
Replies: 3
Views: 718

Re: Playing sound in never ending loop

MP3 always has a bit of leading silence. This is a limitation of the MP3 format (Encoder/decoder overall delay is not defined. See: http://en.wikipedia.org/wiki/MP3#Design_limitations). A few players are able to compensate, if the MP3 has been encoded with the LAME Mp3 info tag. AAC also has a gap a...
by steve
Thu Jul 31, 2014 12:56 am
Forum: General Audio Programming
Topic: Noise removal "tinklebells" and how to fix them
Replies: 23
Views: 11363

Re: Noise removal "tinklebells" and how to fix them

The algorithm change in Audacity 1.3.3 (r5979) was, for most material, a considerable improvement over the older algorithm. In particular, it was/is much better for music that has very low level noise as there is insignificant effect on the music while giving a good amount of reduction to the noise ...
by steve
Wed Jul 30, 2014 10:17 pm
Forum: General Audio Programming
Topic: Noise removal "tinklebells" and how to fix them
Replies: 23
Views: 11363

Re: Noise removal "tinklebells" and how to fix them

Paul L wrote:Why did you think this change would help?
What I was thinking was, looking at how the profile is created, rather than take the min or max, why not take the average?
by steve
Wed Jul 30, 2014 8:46 pm
Forum: Windows
Topic: Research Project: Analyzing bee flight recordings
Replies: 2
Views: 377

Re: Research Project: Analyzing bee flight recordings

best way to set up the plot spectrum for it to be the most accurate? If you need low frequency accuracy, set the "Size" to 65536 (maximum) and the "Axis" to "Log frequency". For even greater low frequency resolution, resample the track to a low sample rate (Tracks > Re...
by steve
Wed Jul 30, 2014 8:20 pm
Forum: Windows
Topic: Selecting and deleting audio between labels.
Replies: 18
Views: 1912

Re: Selecting and deleting audio between labels.

I'll need to check the code..... Is the design you mention the "Label starting point" or something else? Yes, the "Label starting point [seconds before sound starts]", though the accuracy is limited to +/- 1/100th second. Sound Finder (and Silence Finder) create an amplitude enve...
by steve
Wed Jul 30, 2014 6:36 pm
Forum: General Audio Programming
Topic: Noise removal "tinklebells" and how to fix them
Replies: 23
Views: 11363

Re: Noise removal "tinklebells" and how to fix them

At line 478 of NoiseRemoval.cpp change this: How about changing: float min = mSpectrums[start][j]; for (i = start+1; i < finish; i++) { if (mSpectrums[i][j] < min) min = mSpectrums[i][j]; } to: float min = mSpectrums[center][j]; The main problem being that with either, in my initial test, the remai...
by steve
Wed Jul 30, 2014 5:24 pm
Forum: General Audio Programming
Topic: Noise removal "tinklebells" and how to fix them
Replies: 23
Views: 11363

Re: Noise removal "tinklebells" and how to fix them

Paul L wrote:There seems to be a bug that mislabels the vertical scale of Spectrogram Log F, unless you zoom out to the maximum.
Would that be: http://bugzilla.audacityteam.org/show_bug.cgi?id=525
by steve
Wed Jul 30, 2014 5:14 pm
Forum: Windows
Topic: External I/O Projects
Replies: 9
Views: 1031

Re: External I/O Projects

I'll have a look and see if I can work out what they are doing. I'll get back later today. Unfortunately I couldn't find out much. Their version is only available for Windows or Mac and their documentation says nothing about combining multiple I/O data sheets. The I/O feature is something they have...