Build a reversed sound effect
Turn a short impact, intake or instrument tail backwards to make a transition.
Guide
Reverse Audio plays a whole piece of sound backwards, from the end to the beginning. Pure audio uses ffmpeg's areverse and keeps its original format where possible; video has two routes — “Reverse picture and sound together” reverses the picture, applies areverse to the sound and re-encodes to MP4, while “Reverse the sound only” discards the picture and outputs MP3 only.
Updated 2026-09-103 min read
Reverse Audio plays a whole piece of sound backwards, from the end to the beginning. Pure audio uses ffmpeg's areverse and keeps its original format where possible; video has two routes — “Reverse picture and sound together” reverses the picture, applies areverse to the sound and re-encodes to MP4, while “Reverse the sound only” discards the picture and outputs MP3 only.
The reverse filters have to buffer the whole set of samples or video frames before emitting them in the opposite order, so memory pressure is higher than for ordinary sequential transcoding. The code sets a hard limit on reversing picture and sound together: when a duration above 60 seconds is detected the button is disabled and the page suggests trimming a shorter clip first.
| Input | Output | Notes |
|---|---|---|
| A 10-second WAV sound effect | The whole WAV or a compatible format played in reverse |
Good for reversed intakes and transition effects |
| A 45-second MP4 | Picture and sound reversed together → MP4 |
Video and audio reversed in step |
Turn a short impact, intake or instrument tail backwards to make a transition.
Reverse picture and sound together on a clip of 60 seconds or less.
When the picture is not needed, choose the sound-only mode and get an MP3 straight away.
The filter has to buffer the complete frame sequence, and the memory risk in browser wasm is high, so the interface deliberately limits picture-and-sound reversal to 60 seconds.
It only reverses the order of the samples; nothing is sped up or retuned. The change in perception comes from the direction of time being reversed.
The media file is reversed only inside the browser by ffmpeg.wasm and is never uploaded; the first use of the workbench downloads about 31–32 MB of single-threaded ffmpeg core from the site's asset domain or jsDelivr.
Updated 2026-09-10
Play the whole track backwards (areverse); for video, reverse the picture too or just the sound
Everything runs locally in your browser; files are never uploaded to a server