Useful Representations of Log Audio Frequency Spectrum

AI Thread Summary
Generating a logarithmic frequency scale for audio requires balancing resolution across the spectrum, particularly between 20 Hz and 20 kHz. The current method produces excessive resolution in lower frequencies while compressing higher frequencies too much, leading to an impractical distribution of values. Adobe Audition's spectral analyzer appears to use a modified logarithmic scale that expands mid-range frequencies more effectively than a standard logarithmic function. This suggests that a simple logarithmic approach may not adequately represent audio data, as it can lead to unwanted fine resolution in lower frequencies. Exploring alternative scaling methods, such as spline curves, may provide a more effective solution for visualizing audio frequency data.
Deepsatchel
Messages
6
Reaction score
0
Hi everyone,

So I'm trying to basically generate a list of numbers between 20 and 20,000 (Hz) in log space that will give good resolution to parts of the audio spectrum that matter! After all that is the point of using log scale for frequency in the first place.

The list generator I have at this point gives very fine resolution between 20 and 100 Hz, and when it gets closer to 20kHz, it's counting by the thousands. A good audio log scale should expand the lows and compress the highs, but not to this degree! What I'm doing is unaltered "log," I believe. Here's exactly what my code looks like:

top = 20000
bottom = 20
bands = 12

loop i from 0 to bands
nextBand = 10^((i/bands)*log10(top-bottom+1))-1+bottom;
save the new frequency value to the list...
end loop

The result:

20, 21, 24, 30, 46, 80, 160, 341, 755, 1699, 3854, 8773, 20000.

In practice I will use many more bands. When I use 400 bands (a reasonable use case), I get 96 of them in the 20's! That is way too many. So if straight logarithmic scale is not what's normally used, then what is? I noticed pictures of Adobe Audition's spectral analyzer on Google Images had scales that seemed approximately logarithmic but expanded more in the middle than regular log.

Anyone know about this?
Thanks, Elwood
 
Engineering news on Phys.org
Example: http://acousticaddicts.com/0001/AllFourSoftD.jpg

Notice how the distance from 100 to 1k is much smaller than the distance from 1k to 10k... What did they do to the scale?
 
I know I keep harping on and on, but it seems more likely that in fact the Adobe Audition scale is completely unrelated to an actual log function. I've never met a log function that does not hug the y-axis (thus give very fine resolution - small frequency steps) from 0 out to, say, 1. This is what gives the unwanted fine resolution in the lower frequencies. Therefore a mathematical log is not a foolproof choice to present audio data. Instead, probably, Audition splines a curve over a couple points.

It does resemple log space, but not down close to zero.

Any thoughts?
 
Hi all, I have a question. So from the derivation of the Isentropic process relationship PV^gamma = constant, there is a step dW = PdV, which can only be said for quasi-equilibrium (or reversible) processes. As such I believe PV^gamma = constant (and the family of equations) should not be applicable to just adiabatic processes? Ie, it should be applicable only for adiabatic + reversible = isentropic processes? However, I've seen couple of online notes/books, and...
Thread 'How can I find the cleanout for my building drain?'
I am a long distance truck driver, but I recently completed a plumbing program with Stratford Career Institute. In the chapter of my textbook Repairing DWV Systems, the author says that if there is a clog in the building drain, one can clear out the clog by using a snake augur or maybe some other type of tool into the cleanout for the building drain. The author said that the cleanout for the building drain is usually near the stack. I live in a duplex townhouse. Just out of curiosity, I...
I have an engine that uses a dry sump oiling system. The oil collection pan has three AN fittings to use for scavenging. Two of the fittings are approximately on the same level, the third is about 1/2 to 3/4 inch higher than the other two. The system ran for years with no problem using a three stage pump (one pressure and two scavenge stages). The two scavenge stages were connected at times to any two of the three AN fittings on the tank. Recently I tried an upgrade to a four stage pump...
Back
Top