Health & Life Runs locally Ready to use Built-in examples No tracking

Online Metronome

Set BPM and time signature, press start and follow flashing beats with accented clicks: 30-250 BPM, 2/4 3/4 4/4 and 6/8, synthesized with Web Audio - nothing to install.

A metronome is the underlying tool for practising an instrument, drums or the rhythm of speech: drift in tempo is inaudible while playing but obvious the moment it is recorded. A mechanical metronome needs winding and maintenance, and a phone app either advertises or demands permissions; the browser version opens ready to use, with the tempo typed in directly and the time signature switched to suit the piece.

The method at the centre of it is slow practice with a steady rise: bring the tempo down to the slowest speed at which the passage can be played correctly, loop it for several repetitions, then add four to eight BPM at a time until the target is reached. The accent matters for the feel — this tool makes the first beat of each bar a higher tone and the rest lower, so the ear counts the bars by itself and rushing or dragging becomes immediately audible.

How to use

  1. Set the tempo in BPM, from 30 to 250.
  2. Choose the time signature: 2/4, 3/4, 4/4 or 6/8.
  3. Press start and follow the flashing beats with the accented clicks.
  4. Practise slowly, then raise the tempo a few BPM at a time.

How it works

The difference between accented and weak beats

This tool uses a high tone (about 1,000 Hz) on each bar's first beat and a low tone (about 700 Hz) for the rest, so the pitch gap lets your ear find the bar's head without counting. Mechanical metronomes distinguish with a "ding, da" double tone on the same principle — in practice listen for the accent to steady the bar's frame first, then fill in the weak beats.

How to choose the BPM number

BPM (beats per minute) is the beat count per minute: 60 means one beat per second. Pop songs are mostly 90-140, slow ballads 60-80, dance tracks 120-130. Start technique passages at 60; following the number beats following the groove — numbers don't lie.

Matching the time signature

Look at the time signature on the score: 4/4 is most common (nearly all pop), 2/4 is marches and polkas, 3/4 is waltzes and minuets, and 6/8's groove is "strong weak weak, secondary strong weak weak" in two big beats. Drummers can play 6/8 as six eighth notes; melodic instruments groove better in two big beats.

What if I can't hear the sound

On the first "start," the browser unlocks audio permission, and a slight delay can occur — normal; volume follows system and device media volume. In silent settings (library, late night), watch the beat flashes instead — a visual metronome trains just as well.

Code example

JavaScript Beat interval and accent: 60000 / bpm

const beatMs = Math.round(60000 / bpm);   // 120 bpm → 500ms per beat

// Accent on the first beat of each bar: beats is a boolean sequence
const beats = Array.from({ length: 4 }, (_, i) => i === 0);   // 4/4 → [accent, light, light, light]

// Time signature to beats per bar: 2/4→2, 3/4→3, 4/4→4, 6/8→6

JavaScript The conventional tempo-term boundaries

function tempoWord(bpm) {
  if (bpm <= 40) return "grave";        // very slow
  if (bpm <= 75) return "adagio";       // slow (largo ≤59)
  if (bpm <= 107) return "andante";     // walking pace
  if (bpm <= 155) return "allegro";     // fast (moderato ≤119)
  if (bpm <= 200) return "presto";      // very fast (vivace ≤175)
  return "prestissimo";                 // as fast as possible
}

FAQ

Can the metronome's accent be turned off?

The current version fixes the accent on the bar's first beat, the standard form in most practice. To practice even beats without accents, choose a BPM and treat the time signature as a single beat (one beat per bar).

What BPM should I start at on guitar?

Find a starting point at which you can play 4 bars with zero mistakes, usually about half the target speed. Add 4-8 BPM each time, and step back a tier on a mistake — stair-step speed-up leaves fewer bad habits than grinding at a slow tempo.

Why do I speed up when practicing with a metronome?

It's "rushing" — tension makes people lean forward unconsciously. The fix is to turn the metronome up, actively listen for the accent, or record and compare; rushing means it's time to slow down, no shame.

How should 6/8 be played?

6/8 feels like two big beats (each with 3 eighth notes), and a conductor draws two triangles. This tool clicks 6 small beats with the accent on beat 1 — listen for a "dong-da-da / dong-da-da" loop, and supply the beat-4 secondary accent by feel.

Why is BPM capped at 250?

Above 250 BPM the beat interval is under 240 ms, hard for the ear to distinguish and of little practice value; very fast pieces (like Flight of the Bumblebee) are better practiced at half speed then symmetrically sped up.

Does metronome practice need a connection?

Once the page loads it works offline, with the beat synthesized in real time by the browser's Web Audio, relying on no audio file download.

Can it serve as a tuner or recorder?

No. This tool focuses on metronome training; use the tuner tool for tuning and the system recorder for recording — doing one function well is more reliable than a mishmash.