Tested tool guide
Tested browser tools
Checked August 16, 2026
What Audio Spectrogram Image does, with a checked example
This tool reads an audio file, slices it into many short overlapping time windows, and runs each window through a Fourier transform to get its frequency content. Those columns are stacked left to right to build one image: time along the x-axis, frequency along the y-axis, and color showing how much energy is present at each frequency at each instant. The thing people get wrong most often is treating brightness as an absolute loudness value - the color scale is normalized to the loudest moment in that particular file, so two spectrogram images from different recordings are not directly comparable by eye.
Worked example
A concrete input and expected output from the current implementation.
Input
a 3-second WAV file containing a pure 440 Hz sine tone (concert-pitch A) at constant amplitude
->
Expected output
a spectrogram image with one bright horizontal band running the full width of the image at the row corresponding to 440 Hz, with the rest of the image dark
a steady pure tone has all its energy at a single frequency for the whole duration, so the STFT reports a peak at 440 Hz in every time window, producing a flat unbroken line rather than a sweep or a smear.