A MusicProductionWiki Publication Sound Better →
The Producer's Bible
The Producer's Bible Published by MusicProductionWiki.com 2026 Edition

Tempo Sync

/ˈtɛm.poʊ sɪŋk/

Tempo Sync is the process of locking an effect, instrument, or modulation source to a session's BPM so its timing is musically aligned. It converts time-based parameters into note-value fractions such as 1/4 or 1/8.

Hear The Difference
Dry vs Processed — Tempo Sync
🎵 Audio examples coming soon — check back shortly.
Dry Processed

01 Definition

The difference between a delay that floats beautifully inside the groove and one that fights the kick drum for space is almost always a single toggle — and knowing exactly what happens when you flip it separates records from demos.

Tempo Sync is the mechanism by which a DAW, hardware sequencer, or effects processor ties one or more time-dependent parameters to the master tempo of a session, expressed in beats per minute (BPM). Rather than setting a delay time in absolute milliseconds or an LFO rate in Hertz, the producer assigns a musical note value — whole note, half note, quarter note, eighth note, triplet, or dotted subdivision — and the host calculates the corresponding real-world duration on the fly. If the session tempo changes, every synced parameter recalculates automatically, keeping the rhythmic relationship constant without any manual intervention.

At its most fundamental level, Tempo Sync solves a mathematical translation problem. A quarter-note delay at 120 BPM lasts exactly 500 ms, but that same groove pushed to 140 BPM demands a 428.57 ms delay — a difference large enough to smear transients against the snare and collapse the stereo image on a busy mix. Tempo Sync removes the producer from that arithmetic entirely, redirecting cognitive bandwidth toward the creative decision of which subdivision best serves the arrangement rather than which number to type into a field.

The concept extends well beyond delay lines. Any parameter that varies over time can be tempo-synced: LFO rates controlling filter cutoff or amplitude, sidechain release times in compression, arpeggiator step lengths, tremolo depths, auto-pan cycles, chorus modulation rates, stutter effects, gating patterns, and the playback speed of tape-style pitch modulators. In a modern DAW environment, Tempo Sync is also the backbone of clip-based and loop-based workflows, ensuring that imported audio loops snap to the project grid without requiring manual time-stretching calculations.

It is important to distinguish Tempo Sync from mere quantisation. Quantisation corrects the timing of already-recorded MIDI note events, snapping them to the nearest grid position after the fact. Tempo Sync, by contrast, operates prospectively: it defines the rate at which an ongoing, continuous process repeats or modulates, anchoring it to the metronome before a single note is played. The two concepts cooperate — a quantised MIDI sequence played through a tempo-synced arpeggiator is doubly locked to the grid — but they operate at different levels of the signal chain and answer different questions.

Understanding Tempo Sync fluently also means understanding its creative limits. Hard sync to a quarter note can feel mechanical; choosing a dotted-eighth delay (famously associated with U2's The Edge and producer Brian Eno) imposes a compound, off-kilter repeat that creates forward momentum without sounding like a textbook exercise. Triplet subdivisions introduce swing and polyrhythmic tension when layered against straight-time drum patterns. Producers who treat Tempo Sync as merely a convenience tool miss its expressive dimension: it is one of the primary levers for making a mix feel like it breathes at the same rate as its drums.

02 How It Works

At the host-clock level, a DAW maintains a master transport timeline measured in ticks — typically 480 or 960 PPQ (pulses per quarter note). Every time-synced plugin or internal module subscribes to that tick stream and uses it to derive the absolute duration of its chosen note value. The formula is straightforward: T(ms) = (60,000 / BPM) × note_multiplier, where note_multiplier is 4 for a whole note, 1 for a quarter note, 0.5 for an eighth, 0.25 for a sixteenth, and so on. Dotted values multiply by 1.5; triplet values multiply by 2/3. The plugin receives tempo-change events from the host in real time and recalculates T on each change, which is why a smooth tempo ramp in Ableton Live causes synced delays to smoothly shrink or stretch rather than jump discontinuously.

MIDI Clock is the protocol that carries tempo information between separate devices and applications. Defined in the original MIDI 1.0 specification (1983), MIDI Clock transmits 24 timing pulses per quarter note at a rate determined by the master device. A slave device — a hardware drum machine, an external effects rack, a second computer — counts incoming pulses and derives BPM from their interval. Modern implementations include MIDI Timecode (MTC), which carries absolute position data for tighter sync over longer sessions, and Ableton Link, a LAN/WiFi protocol introduced in 2015 that uses network timestamps and consensus algorithms to lock multiple devices to a shared tempo and phase without designating a single master, tolerating packet jitter to sub-millisecond accuracy.

Inside a plugin, Tempo Sync typically operates through the VST3, AU, or AAX plugin API's processContext structure (or equivalent), which passes the current BPM, time signature, and transport state to the plugin on every audio buffer callback. The plugin's internal delay buffer is then sized dynamically: when the user selects 1/8-note sync at 128 BPM, the plugin computes 234.375 ms, allocates or pointers a circular buffer of that length in samples (at 44.1 kHz: ~10,336 samples), and reads the delayed signal from that position. Changing the project BPM causes the read pointer to shift, which can produce a brief pitch artifact during the transition — a behaviour audible when using Insert Delay or tape-style units and one that some producers exploit deliberately for glitch effects.

Modulation sources — LFOs in synthesizers, tremolo modules, auto-filters — use the same tempo reference but operate in the frequency domain rather than the time domain. A synced LFO set to 1/4 note at 120 BPM runs at 2 Hz (one full cycle every 500 ms). The phase of that LFO is typically reset to zero on transport start, ensuring it begins at the same position relative to beat one on every playback. Phase offset controls then allow the LFO to be shifted by a fraction of its cycle — useful for staggering multiple synced LFOs across stereo channels or layered synth voices without destroying their rhythmic relationship to the grid.

The reliability of Tempo Sync degrades under three conditions: excessive plugin latency (where PDC alignment errors push synced events slightly late), floating-point BPM values (non-integer tempos like 93.7 BPM accumulate rounding errors over long timelines), and sample-rate mismatches between host and plugin. Serious productions working with synced effects at high precision should run sessions at a fixed integer BPM whenever possible, ensure PDC is enabled and correctly reported by every plugin, and verify that all virtual instruments and effects are operating at the project's native sample rate to prevent hidden resampling that shifts sync timing by partial samples.

Tempo Sync signal flow: master BPM clock distributes note-value timing to delay, LFO, and arpeggiator modules, showing calculated millisecond values at 120 BPM. Tempo Sync signal flow at 120 BPM: master clock distributes note-value timing to delay, LFO, and arpeggiatorMASTER CLOCK120 BPM · 480 PPQT = 60000 / BPMDELAY LINE1/8 note → 250 msD.1/8 → 375 msLFO1/4 note → 2.00 Hz1/2 note → 1.00 HzARPEGGIATOR1/16 → 31.25 ms1/8T → 41.67 msnote valuerate Hzstep msNOTE VALUE REFERENCE1/4 = 500ms1/8 = 250msD1/8 = 375ms@ 120 BPM — values scale proportionally with tempo

Diagram — Tempo Sync: Tempo Sync signal flow: master BPM clock distributes note-value timing to delay, LFO, and arpeggiator modules, showing calculated millisecond values at 120 BPM.

03 The Parameters

Every tempo sync — hardware or plugin — operates on the same core parameters. Know these and you can work with any implementation.

NOTE VALUE / SUBDIVISION
Sets the rhythmic denominator of the synced parameter

Options typically range from 1/1 (whole note, 2000 ms at 120 BPM) through 1/32 (62.5 ms at 120 BPM), with dotted and triplet variants for each. Selecting a dotted-eighth on a stereo delay creates the classic 375 ms repeat at 120 BPM. The right subdivision is determined by the melodic density of the source — busier parts usually require shorter values (1/16 or 1/8) to avoid rhythmic clutter.

SYNC ENABLE TOGGLE
Switches between free (millisecond/Hz) and synced (note-value) mode

When disabled, the parameter returns to its last absolute value, allowing A/B comparison between free and synced settings. Many producers disable sync deliberately on reverb pre-delay — setting it to a specific small ms value (8–15 ms) rather than a note fraction — because reverb bloom often benefits from a non-grid offset that slightly detaches the tail from the attack transient.

PHASE OFFSET
Shifts the start position of the synced cycle relative to beat one

Expressed as a percentage (0–100%) or in degrees (0–360°), phase offset repositions a synced LFO or tremolo so its peak or trough lands on a musically specific moment. Offsetting an auto-pan LFO by 180° relative to the kick's synced sidechain envelope, for instance, keeps the stereo field from pulsing in the same direction as the low-end pumping — a critical mix-clarity technique in dance music.

TEMPO SOURCE / MASTER
Defines which clock signal the plugin or device follows

Options include internal DAW transport, external MIDI Clock input, Ableton Link, MTC, or a dedicated hardware word-clock signal. In hybrid studio setups where a hardware sequencer drives a software DAW, setting the DAW to external MIDI Clock slave mode while the hardware acts as master prevents drift between the two environments. Latency compensation for the MIDI Clock cable (typically 1–2 ms per metre for standard DIN MIDI) should be dialled in at the DAW's MIDI preference level.

TRIPLET / DOTTED MODIFIER
Applies rhythmic flavour modifiers to the base note value

Triplet values divide each beat into three equal parts, producing a 1/8T delay of 166.67 ms at 120 BPM — subtly behind the straight-eighth grid in a way that implies swing without a swing-quantise. Dotted values add half the base value, producing 375 ms for a dotted 1/8 at 120 BPM. These modifiers are the difference between a delay that feels tight and one that propels the listener forward through the bar.

TEMPO MULTIPLIER / DIVIDER
Scales the effective tempo for the synced parameter by integer factors

A ×2 multiplier on a synced LFO effectively halves its note-value period, running it twice as fast as the selected subdivision. Conversely, a ÷2 divider doubles the period. Used on sidechain-linked tremolo rates, a ÷2 divider at 1/4-note sync creates a half-bar pulsing effect that adds large-scale energy to builds without requiring manual BPM re-entry.

04 Quick Reference Card

Session-ready starting points. These are starting-point subdivisions; musical context always overrides convention — use your ears against the kick and snare grid before committing.

ParameterGeneralDrumsVocalsBass / KeysBus / Master
Delay (primary repeat)1/8 note1/16 noteD1/8 (dotted)1/4 note1/4 note (low mix)
Delay (secondary/tail)1/4 note1/8T (triplet)1/2 note1/2 note1/1 note (5–10% wet)
LFO rate (filter/amp)1/4 note1/8 note1/2 note1/4 or 1/2 note1/1 note (subtle)
Tremolo rate1/8 note1/16 note1/4 note1/8 noteAvoid — use parallel
Sidechain release1/4 note1/8 note1/4 note1/4 note1/4 note
Auto-pan cycle1/2 note1/4 note1/1 note1/2 noteAvoid on master
Arpeggiator step1/8 note1/16 note1/8 or 1/41/8 noteN/A

These are starting-point subdivisions; musical context always overrides convention — use your ears against the kick and snare grid before committing.

05 History & Origin

The need to lock effects to musical tempo predates digital audio by several decades. In the late 1950s and early 1960s, tape-echo units such as the Watkins Copicat and the Echoplex allowed engineers to set delay times by physically adjusting the tape loop length or the distance between record and playback heads, then manually tuning that interval to the session tempo by ear. Studio engineers at Abbey Road and Capitol Records developed workflows for calculating the required head-gap settings from the session click-track speed, but the process demanded continuous manual intervention whenever the tempo changed.

The first hardware steps toward automatic tempo synchronisation arrived with the emergence of analogue sequencers and drum machines in the early 1970s. The Roland MC-8 MicroComposer (1977) introduced clock-pulse synchronisation between devices using a proprietary 24-pulse-per-quarter-note (24 PPQN) DIN sync standard — later standardised as MIDI Clock in the MIDI 1.0 specification ratified in August 1983 by representatives from Roland, Sequential Circuits, Oberheim, and Yamaha. The Roland TR-808 (1980) and TR-909 (1983) both implemented DIN sync, enabling drum machines and synthesizers to lock step rates together for the first time in a commercially accessible way. Producers including Giorgio Moroder, Afrika Bambaataa, and Larry Heard built entire compositional architectures around the quantised, tempo-locked rhythms these machines enabled.

Digital delay units brought tempo-sync to the effects domain in the mid-1980s. The Lexicon PCM-70 (1985) and Eventide H3000 (1987) allowed delay times to be set in milliseconds derived from a calculated BPM-to-time table printed inside the unit's lid — still a manual process, but one that reflected studio awareness of the relationship. The breakthrough came with MIDI-controllable delays such as the TC Electronic 2290 Dynamic Digital Delay (1985), which could receive external MIDI Clock and automatically adjust its delay time in quarter-note and eighth-note increments. Engineers working with artists such as Peter Gabriel and Tears for Fears used these units to create tempo-locked stereo spreads that would have required constant manual adjustment on tape-echo predecessors.

Software tempo sync as producers know it today was shaped by two pivotal developments in the 1990s. First, Steinberg's release of Cubase 3.0 for Atari ST (1991) introduced the concept of VST (Virtual Studio Technology) plugins that could query the host's tempo via a shared memory structure — a primitive precursor to the modern processContext API. Second, Propellerhead's ReCycle (1993) introduced REX file format, which time-sliced audio loops into individual transient slices that could be reassembled at any project tempo, effectively enabling tempo-synced audio playback without pitch artefacts for the first time at the desktop level. By 2000, DAWs including Logic Audio, Nuendo, and early versions of Pro Tools implemented tempo-aware plugin APIs as standard, and the note-value selector in a delay plugin became a ubiquitous piece of production UI.

06 How Producers Use It

Delays and spatial effects: The most common application of Tempo Sync in day-to-day production is delay time selection. Vocals routinely receive a dotted-eighth delay (D1/8) because the 1.5× subdivision creates a repeat that lands on the off-beat between the third and fourth sixteenth notes of each beat, generating forward momentum without cluttering the downbeat where the next vocal phrase usually begins. This technique — popularised by engineer Andy Wallace on recordings by Jeff Buckley and Nirvana, and by Daniel Lanois and Brian Eno on U2's material from The Unforgettable Fire onward — has become so standard that it is the default preset in most delay plugins. Short, 1/16-note delays used at 100% wet create doubling effects when fed back through a tempo-synced low-pass filter, a technique common in modern trap and hip-hop production for thickening melodic 808 lines.

LFOs and modulation: Synthesizer LFOs synced to 1/4 or 1/2 note produce filter-sweep patterns that breathe in time with the kick drum, a foundational technique in house and techno. Producers including Aphex Twin, Four Tet, and Burial have exploited Tempo Sync on LFO-driven pitch modulation to create vibrato and wobble effects that feel rhythmically intentional rather than ornamental. In Serum, Massive X, and Vital, LFO sync can be taken to extreme slow rates — 4/1 or 8/1 — for very gradual filter opens that structure energy over multiple bars, effectively replacing a static automation lane with a musically aware modulation source that always resolves correctly at bar boundaries.

Sidechain compression timing: While the attack time of a sidechain compressor is typically left in milliseconds (1–5 ms for transparent ducking), the release time benefits enormously from tempo sync. A 1/4-note synced release at 128 BPM corresponds to approximately 469 ms — close enough to the pumping rate of classic French house (as heard on Daft Punk's Homework) that engineers often use tempo sync as a shorthand for dialling in that specific feel. In FL Studio's Parametric EQ 2 and in Ableton's Glue Compressor, the release is expressed in milliseconds, so producers in those environments use the BPM-to-ms formula manually, but dedicated sidechain tools like LFOTool (Xfer Records) offer direct note-value sync for the modulation shape.

Rhythmic gating and chopper effects: Tempo-synced tremolo and gate plugins — iZotope's Stutter Edit 2, Cableguys VolumeShaper, Sugar Bytes Turnado — allow producers to impose rhythmic amplitude patterns on sustained sounds in perfect sync with the session. This technique, prevalent in progressive house, modern pop production (notably in the work of Diplo and Skrillex as Jack Ü), and ambient music, requires Tempo Sync to be rock-solid or the chop pattern drifts out of phase within a few bars. The critical variable is gate length or duty cycle: at 1/16 sync with a 50% duty cycle, the gate opens and closes 8 times per beat, producing a mechanical 32nd-note flutter; narrowing the duty cycle to 10% at the same sync rate creates sharp, percussive stabs from sustained pad sounds.

AbletonUse the Sync button in the native Delay (formerly Simple Delay / Ping Pong Delay) — note-value selectors appear in place of ms readouts. For LFO sync, every modulator in Ableton's Wavetable and Drift synths offers 1/1 through 1/32 plus triplet/dotted. The Link feature (Network > Enable Ableton Link) extends tempo sync to other instances on the same LAN without MIDI routing.
FL StudioIn the Parametric EQ 2 and Fruity Delay 3, enable tempo sync via the right-click context menu on any knob — select "Set as time-synced (tempo)" and choose a note value from the list. The Fruity Peak Controller synced to the master tempo lets you modulate any mixer parameter with a BPM-locked envelope, functioning as a tempo-aware automation clip.
Logic ProLogic's Delay Designer supports up to 26 independent tap points each with its own note-value sync — essential for polyrhythmic delay textures. In the ES2 synthesizer, all three LFOs can sync to the host tempo with note-value selection from 1/32T to 32/1. The Sample Arp plugin in MainStage and Logic offers rate sync per step, enabling complex tempo-locked melodic patterns without a dedicated arpeggiator hardware unit.
Pro ToolsPro Tools' native Mod Delay III includes a Sync button that locks delay time to the session tempo via note-value division. For LFO sync, third-party plugins are generally required — the native instrument set is limited. Ensure that the MIDI Clock output is enabled in Setup > Peripherals > Synchronisation when driving external hardware from Pro Tools' transport to prevent MIDI slaves from drifting mid-session.
ReaperReaDelay, Reaper's native multi-tap delay, syncs individual taps to the project BPM via note-value dropdowns per tap — right-click any delay time knob and select "Set value as note length." Reaper's JSFX scripting environment allows custom tempo-synced modulators; the stock tempo_sync.jsfx script provides LFO-style modulation of any parameter at note-value rates. MIDI Clock output is configured per output port in Preferences > MIDI devices.
The Producer's Briefing

Sound better by Friday.

One email a week. The techniques behind the terms — curated by working producers, not algorithms.

No spam · Unsubscribe anytime

07 In the Wild

Abstract knowledge becomes practical when you can hear it in music you know. These tracks demonstrate tempo sync used intentionally, at specific moments, for specific purposes.

U2 — "Where The Streets Have No Name" (1987)
0:00–0:30 intro · Produced by Brian Eno & Daniel Lanois

The Edge's guitar delay on this track is the canonical example of a dotted-eighth tempo-synced delay in rock production. At the song's tempo of approximately 126 BPM, a D1/8 delay produces a repeat at roughly 357 ms, landing squarely on the off-16th between beats two and three. Listen on headphones to the way each picked note generates a cascading echo that fills the space between downbeats rather than landing on them — the stereo spread of the two delay taps (left and right panned) creates the illusion of a much fuller guitar texture than a single instrument could produce. Eno and Lanois used the Korg SDD-3000 rack delay set to MIDI Clock sync from the Roland TR-808 pattern triggering the drum machine.

Daft Punk — "One More Time" (2000)
1:45–2:15 vocal section · Produced by Daft Punk (Thomas Bangalter & Guy-Manuel de Homem-Christo)

The vocoder and vocal processing on this track features tempo-synced stutter edits and a filtered delay set to 1/8-note at the track's 123 BPM grid. The repeating vocal fragments during the breakdown are gated at a 1/16-note rate with a short decay envelope, a technique that at the time required careful MIDI-sync between the Korg Vocoder VC-10 and a Roland MC-303 sequencer. Listen to how the repeat tails end precisely on the bar line before the drop rather than bleeding into the next phrase — the tempo sync ensures every repetition resolves cleanly, making the transition feel inevitable rather than engineered.

Skrillex — "Scary Monsters and Nice Sprites" (2010)
1:10–1:45 drop · Produced by Skrillex (Sonny Moore)

The wobble bass in this track is one of the most widely cited examples of a tempo-synced LFO applied to a synthesizer's filter cutoff. The LFO rate is set to 1/4-note at the drop's 140 BPM, creating a filter cycle of approximately 428 ms per wobble. During the half-time breakdown sections, Skrillex switches the LFO to 1/2-note, halving the wobble frequency and creating a perceptible energy shift without changing the underlying synth patch. This explicit use of note-value switching as a compositional device — rather than a convenience setting — demonstrates how Tempo Sync can function as an arrangement tool.

Billie Eilish — "bad guy" (2019)
0:42–1:05 verse · Produced by Finneas O'Connell

Finneas used a short 1/16-note delay on Eilish's dry vocal in Logic Pro, set to a very low feedback level (1–2 repeats) and high-pass filtered above 3 kHz, creating a subtle shimmer that is subliminally rhythmic rather than audibly echoed. The sync to the 135 BPM grid means the 111 ms repeat falls exactly on the next sixteenth-note subdivision, thickening the vocal's transient without introducing pitch smear. This approach — using Tempo Sync at very short note values for subtle doubling rather than obvious echo — is increasingly common in modern pop and represents a different use of the concept than the traditional long-delay application.

Listen On Spotify
Billie Eilish — bad guy

08 Types & Variants

MIDI Clock Sync
Roland TR-909 · Sequential Circuits Prophet-600

The original hardware implementation of tempo sync, transmitting 24 timing pulses per quarter note over a standard 5-pin DIN MIDI connection. MIDI Clock does not carry absolute position information — a slave device starting mid-session may need a Song Position Pointer (SPP) message to align correctly. Latency introduced by USB-to-MIDI adapters can introduce 1–5 ms jitter, making dedicated hardware MIDI interfaces preferable for tight synchronisation in performance contexts.

Plugin Host Sync (VST3/AU/AAX)
Universal Audio Apollo · Avid HDX

Modern DAW tempo sync operates through the plugin API's processContext structure, giving every loaded plugin access to the host BPM, time signature, and transport state on each audio buffer. This method achieves sample-accurate sync with zero additional latency beyond plugin delay compensation, and it supports non-integer BPM values and automated tempo changes across a session timeline. It is the dominant sync mechanism for all software-based production workflows.

Ableton Link
No dedicated hardware — runs over Ethernet/WiFi

Introduced by Ableton in 2015 and opened as a free SDK, Link uses network timestamps and a consensus-clock algorithm to synchronise tempo and phase across multiple devices on the same network without a designated master. It tolerates up to ~3 ms of network jitter while maintaining sub-millisecond average accuracy and supports devices joining or leaving the session dynamically without disrupting playback. Widely adopted by iPad apps (Algoriddim djay, Korg Gadget), desktop DAWs, and hardware sequencers including the Polyend Tracker.

MIDI Timecode (MTC)
SMPTE timecode · Tascam DA-88

MTC transmits absolute time position as SMPTE hours, minutes, seconds, and frames at 24, 25, 29.97, or 30 frames per second, enabling sync between audio, video, and MIDI sources at precise timeline positions. Unlike MIDI Clock, which is tempo-relative, MTC allows a slave DAW to locate to any point in a video timeline and know its absolute position. It is essential in post-production environments where audio must lock to a picture edit and tempo may vary freely within the session.

Analogue / CV Sync
Korg Volca series · Teenage Engineering Pocket Operators

Modular synthesizers and analogue gear often use a simple pulse-per-step clock signal transmitted over a mono 3.5 mm jack, where each rising edge of the pulse represents one clock tick. The number of ticks per quarter note varies by manufacturer — Korg Volcas use 2 PPQN; many Eurorack modules default to 24 PPQN — requiring a clock divider or converter when chaining devices from different manufacturers. Despite its simplicity, analogue sync introduces negligible jitter and remains preferred by modular performers for its robustness in live settings.

09 Common Mistakes

Interactive Tool
BPM Timing Calculator
Enter your project BPM to get musically-synced tempo sync times.
Tap 4+ times

10 Producers Also Look Up

11 Further Reading

These MPW articles put tempo sync into practice — specific techniques, real tools, and applied workflows.

12 Frequently Asked Questions

Quantisation corrects the timing of recorded MIDI notes after they have been played, snapping them retroactively to the nearest grid position. Tempo sync, by contrast, governs how an ongoing process — a delay repeat, an LFO cycle, an arpeggiator step — unfolds over time by tying its rate or period to the session BPM prospectively. One edits the past; the other governs the future. They can operate simultaneously and are complementary rather than redundant.
Use the formula: T(ms) = 60,000 ÷ BPM for a quarter-note delay. For an eighth note, halve that result. For a dotted eighth, multiply the eighth-note value by 1.5. For triplet values, multiply the base value by 2÷3. At 120 BPM: quarter = 500 ms, eighth = 250 ms, dotted eighth = 375 ms, eighth triplet = 166.67 ms. Many producers keep a BPM-to-ms chart on their studio wall or use a bookmarked calculator for quick reference.
When you change BPM mid-session, the plugin must resize its internal delay buffer — the read pointer jumps to a new position in the audio, which sounds like a brief pitch smear or click. This is normal behaviour for buffer-resizing delay algorithms. Some plugins smooth the transition by interpolating the buffer length over a few milliseconds; others jump immediately. If you need to change tempo without artefacts, automate the BPM change at a point of silence or between song sections, or use a plugin that explicitly advertises smooth tempo-change handling.
Yes, if the hardware supports Ableton Link natively — devices such as the Arturia DrumBrute Impact (firmware 2.0 onward), Elektron Digitakt (OS 1.11 onward), and Polyend Tracker implement Link over USB or WiFi. Devices that only speak MIDI Clock require a MIDI Clock bridge application (such as MIDI Link Sync on iOS or a dedicated hardware converter) to translate Link's network sync into MIDI Clock pulses that the drum machine can follow. Latency compensation may need manual adjustment of a few milliseconds on the hardware side.
Yes, though the approach differs from rhythmic genres. In ambient production, syncing LFOs and delay lines to very long note values — 4/1, 8/1, or even 16/1 — creates slow, structural modulations that are perceived as tonal evolution rather than overt rhythm. Brian Eno's tape-loop systems and Aphex Twin's ambient tracks use cycling processes whose periods are musically proportional even when no explicit beat is present. The effect is subliminal coherence: listeners sense that the textures relate to each other without being able to identify a tempo.
Enable MIDI Clock output on your DAW's MIDI preferences (in Ableton: Preferences > Link/Tempo/MIDI > MIDI Ports, enable Sync on the output port connected to your hardware). Connect the DAW MIDI output to the hardware's MIDI input via a hardware MIDI interface or USB-MIDI adapter. On the synthesizer or drum machine, set it to External MIDI Clock (often labelled EXT, MIDI, or SLAVE in the clock/sync settings). Press play on the DAW transport; the hardware should start in sync. Add a negative MIDI delay offset in the DAW (–2 to –5 ms typically) to compensate for USB polling latency.
Most professional DAWs default to 480 PPQ, which is sufficient for the vast majority of productions. At 480 PPQ and 120 BPM, the tick interval is 1.04 ms — well below the threshold of perceptible timing offset. Some DAWs offer 960 or even 1920 PPQ for very high-resolution MIDI editing and for sessions with extreme tempo automation density. The practical benefit above 480 PPQ is minimal for tempo-sync accuracy specifically, since the main sync accuracy bottleneck is typically the MIDI Clock transmission jitter (USB) or plugin PDC alignment, not the internal tick resolution.
Yes. A tempo-synced delay at very short note values — 1/32 at 120 BPM produces 62.5 ms — creates comb filtering when mixed with the dry signal, as the delayed copy interferes constructively and destructively at specific frequencies. This is actually the operating principle of a flanger (which uses much shorter times, 1–15 ms), and it can be exploited creatively. For conventional delay applications at 1/8 note and longer (250 ms+), the comb-filtering is below audibility as a static effect, though it can become apparent during automation of the delay mix level. Use high-pass filtering on the wet delay signal to prevent muddy low-frequency phase interactions when running a short synced delay on a full-bandwidth source.

Part of The Producer's Bible — Every term. Every technique. One place.
Published by MusicProductionWiki.com · The Reference Standard for Music Production