Metronome
A sample-accurate metronome with tap tempo, time signatures, subdivisions and accents — the click is generated right on your device, even offline.
The metronome isn’t available here
Your browser doesn’t support the Web Audio API (AudioContext). Try the latest Chrome, Edge, Firefox, or Safari.
Export a click track
Render the current tempo, signature, subdivision and accent settings to a 16-bit WAV — handy as a DAW guide track.
Why this click doesn’t drift
Naive metronomes fire setTimeout for every tick, so the click wobbles whenever the browser is busy. This one uses a lookahead scheduler: a light timer wakes every 25 ms and books each click ~100 ms ahead on the Web Audio clock, which is sample-accurate. The result is a rock-steady pulse from 30 to 260 BPM — even with subdivisions running.