-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What scale does the y-axis display (showScaleY = true) ? #74
Comments
It is dBFS, but you're seeing the audio energy distribution by frequency, so the total energy is dispersed across the spectrum and any peak you see is the maximum power of a single frequency. For actual peak measurement we need to analyze the amplitude of the actual audio samples (not split by frequency). This has been requested here and it's in my plans. |
Ah ok, that makes sense.
Thanks for clarifying.
Moz
…On Wed, May 8, 2024 at 9:01 AM Henrique Vianna ***@***.***> wrote:
It is dBFS, but you're seeing the audio energy distribution by frequency,
so the total energy is dispersed across the spectrum and any peak you see
is the maximum power of a single frequency. For actual peak measurement we
need to analyze the amplitude of the actual audio samples (not split by
frequency).
This has been requested here
<#35> and it's in
my plans.
—
Reply to this email directly, view it on GitHub
<#74 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFSLKQ4IFYJ3XY7AWQN663ZBIO25AVCNFSM6AAAAABHJKHKYSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMBQGUZDMNBTGI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Also unlike my own spectrum analyzer project on CodePen (which doesn't use Web Audio API's built-in FFT), AnalyserNode's FFT output isn't normalized to 0dBFS for pure sine tone at full scale as it certainly doesn't have compensation of gain reduction you get from applying a window function and on top of that, it looks approximately -6dB even more quieter Whereas my own spectrum analyzer uses custom FFT routine and it is normalized to 0dBFS for full-scale sine wave test tones and does compensate for gain reduction incurred by window functions, much like foobar2000's built-in Spectrum visualization |
Hi there,
questions about the y-scale when
I have song that peaks around 0dBFS all the time.
With the given settings above the meter peaks at around -20dB.
I was wondering what exactly the y-axis displays? Is this Peak or like a LUFS ?
How can I configure the scale so it actually displays the actually peak value of like 0dBFS?
Thanks for your help,
Moz
The text was updated successfully, but these errors were encountered: