b2KIT

Audio Visualizer

Generate real-time audio visualizations with waveform, spectrum, and bar displays.

Tested tool guide Tested browser tools Checked August 16, 2026

What Audio Visualizer does and how it behaves

This tool routes an audio source - a microphone or an uploaded/played file - through a live analysis node and redraws a canvas on every animation frame in one of three styles: a scrolling waveform, a frequency spectrum, or a bar display. It is a monitor, not an editor: nothing about the audio itself is changed or saved. The most common surprise is that switching styles changes what's being measured - waveform tracks raw amplitude over time, while spectrum and bars track frequency energy - so a loud but bass-heavy signal can look flat in one view and lively in the other.

How the result is produced

1

Live analysis node

The audio source connects to an analyser that continuously exposes two views of the signal: time-domain samples (raw waveform amplitude) and frequency-domain magnitudes (energy per frequency bin, via FFT). Waveform mode reads the first; spectrum and bar modes read the second. Neither view alters the audio passing through - the analyser just taps the stream.

2

Per-frame canvas redraw

On every animation frame, the current analyser data is pulled and mapped to pixels: a connected line for waveform, or a column of bar heights for spectrum/bars. Because this repeats continuously while audio plays, the display is a live view, not a saved image - closing or navigating away discards it unless you capture the screen separately.

Good uses

  • confirming a microphone is actually picking up sound before starting a stream or recording
  • building a quick audio-reactive visual for a kiosk display, stream overlay, or presentation background
  • eyeballing where a track is quiet versus loud or bass-heavy versus bright without opening a DAW

Limits and checks

  • There is no built-in export to video or GIF that I can confirm - if you need a file, screen-record the display while it runs rather than expecting a download.
  • Spectrum and bar views group many raw frequency bins into each visible bar, so they show relative loudness across ranges of pitch, not a precise Hz reading for a single tone.
  • If the display sits flat with no motion, the usual cause is a muted or wrong input device, a paused audio element, or a denied microphone permission - the visualizer itself won't explain which.

Common questions

Can I save the visualization as a video file?

I'm not confident this tool includes a recording or export feature. If it doesn't, the reliable option is to use your operating system's screen recorder while the visualization is running, then trim the result afterward.

Why does switching between waveform and spectrum change how 'loud' the audio looks?

Waveform mode plots raw amplitude over time, so quiet-but-broadband sound reads as a small ripple. Spectrum and bar modes plot frequency energy, so the same sound can produce tall bars in specific ranges even if the waveform looks subdued - they are measuring different things, not disagreeing.

References and verification

The behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools