How to reverse audio and play it backwards — free browser tool
- Step 1Drop the track or clip you want to hear backwards — Drag in one audio file — MP3, WAV, FLAC, M4A, OGG, or Opus. A song, a vocal stem, a voice note, anything you can play forwards you can reverse.
- Step 2Glance at the file card — It shows duration, sample rate, and channels. For a quick listen, any length under the free-tier 30-minute cap works; whole albums should be split first.
- Step 3Press Run Reverse — FFmpeg WASM runs
-af areverselocally. There are no options — reversal is one fixed operation, so there is nothing to set up before listening. - Step 4Press play on the reversed result — When it finishes, the result card shows an
<audio controls>player loaded with the reversed file. Hit play to hear it backwards immediately. - Step 5Listen for the part you care about — Scrub to the section you wanted to check. Remember the timeline is flipped: the end of the original is now the beginning. A phrase at 0:50 of a 1:00 file is now near 0:10.
- Step 6Download only if you want to keep it — Listening is enough for most curiosity checks. If you want the reversed file, click Download — it saves as
name-reversed.<ext>in the original format.
What reversal does vs. what people expect
Common expectations about 'playing backwards' against what areverse actually produces.
| Expectation | Reality with this tool |
|---|---|
| Reversed speech will reveal hidden words | Reversed speech is unintelligible; perceived words are auditory pareidolia, not encoded messages |
| Playing backwards changes the pitch | No — pitch and speed are unchanged; only the time direction flips. Use pitch-shifter to change pitch |
| Backwards = slower | No — same duration, same tempo, same sample rate; just last-sample-first |
| I'll hear the chorus first | Yes — the file's ending plays first, so a final chorus or outro now leads |
| Reversing damages the audio | For WAV/FLAC it is lossless; for MP3/M4A/OGG/Opus it adds one re-encode generation |
Listening-session limits
How much you can reverse-and-listen per file by tier.
| Tier | Max file size | Max duration |
|---|---|---|
| Free | 50 MB | 30 minutes |
| Pro | 200 MB | 120 minutes |
| Pro + Media | 100 GB | Unlimited |
| Developer | 100 GB | Unlimited |
Cookbook
Quick recipes for hearing things backwards. The command shown is what the tool runs in WASM — you only press Run.
Hear a hook backwards in seconds
Drop the track, run, and play the result. No download needed — the inline player loads the reversed file automatically.
Input : hook.mp3 Run : ffmpeg -i hook.mp3 -af areverse -c:a libmp3lame out.mp3 Result: inline <audio> player on hook-reversed.mp3 -> press play
Check a backmasking rumour the right way
Isolate the suspect section first so you are listening to the exact part forwards-reversed, not the whole song. Then reverse just that clip.
Step 1 audio-trimmer -> suspect-section.wav (/audio-tools/audio-trimmer) Step 2 audio-reverser -> suspect-section-reversed.wav Step 3 press play in the result card Note: any 'words' you hear are pareidolia, not a hidden message.
Reverse a voice note to hear it backwards
Phone voice memos arrive as M4A. The reversed output stays M4A and plays in the inline player.
Input : voice-note.m4a Run : ffmpeg -i voice-note.m4a -af areverse -c:a aac out.m4a Result: voice-note-reversed.m4a in the player
Reverse, then reverse again to confirm it's real
Sceptical the reversal is genuine? Reverse the reversed file — it returns to the forward original, proving it's a true mirror.
Pass 1 song.wav -> song-reversed.wav (sounds backwards) Pass 2 song-reversed.wav -> song-reversed-reversed.wav (sounds forwards again)
Listen to only the second half backwards
Reversal flips the whole timeline, so to focus on one half, trim it out before reversing.
Step 1 audio-trimmer -> second-half.wav (e.g. 1:30-3:00) Step 2 audio-reverser -> second-half-reversed.wav Step 3 play it; the original 3:00 mark is now 0:00
Edge cases and what actually happens
Reversed speech is gibberish
ExpectedHuman speech reversed in time is not intelligible — that is the normal, correct result. The tool mirrors samples; it cannot make backwards speech sound like forwards words. Any phrases you think you hear are auditory pareidolia, the brain finding patterns in noise.
No hidden message appears
ExpectedBackmasking has no scientifically demonstrated subliminal effect. The tool reverses the audio faithfully; if there is no deliberately recorded reverse message, none will appear. Most reported messages are pareidolia and are highly suggestible (you 'hear' them only after being told what to listen for).
The chorus you wanted is now at the start
By designReversal flips the entire timeline: the end of the original plays first. To focus on a specific moment, note that its new position is roughly (total duration − original position). Trim the section first with audio-trimmer if you only want that part backwards.
It sounds the same pitch, just backwards
CorrectThat is intentional — areverse does not pitch-shift or time-stretch. If you wanted a 'chipmunk' or slowed effect as well, chain pitch-shifter or tempo-changer after reversing.
Whole album is too long to reverse at once
Blocked (tier limit)Free tier caps a single file at 30 minutes. A full album exceeds that. Split it with audio-splitter and reverse tracks individually, or upgrade to Pro (120 min).
I only want to listen, not download
SupportedYou never have to download. The result card embeds a player on the reversed audio. Listen as much as you like; the file is only saved if you click Download.
MP3 reversal sounds slightly different in quality
Expected (lossy)MP3, M4A, OGG, and Opus are decoded and re-encoded during reversal, adding one lossy generation. For listening it is inaudible; if you want a pristine reversed copy, reverse a WAV or FLAC source instead.
Player won't start until processing finishes
ExpectedThe inline player loads only after areverse completes, because the whole stream must be reversed before any reversed sample exists. Longer files take longer before the player appears.
Frequently asked questions
Can I hear the audio backwards without downloading anything?
Yes. After you press Run, the reversed file is loaded into an HTML5 <audio> player in the result card — just press play. Downloading is optional and only happens if you click the Download button.
Does playing backwards change the pitch or speed?
No. The areverse filter only reorders samples in time. Pitch, tempo, duration, sample rate, and channel count are all unchanged — you hear the exact same audio, just running last-to-first. To alter pitch or speed too, chain pitch-shifter, time-stretcher, or tempo-changer.
Will reversing a song reveal a hidden message?
Almost certainly not. Backmasking has no demonstrated subliminal effect, and the overwhelming majority of 'hidden messages' people report in reversed audio are auditory pareidolia — your brain matching random reversed sounds to words, especially after being primed with what to expect. The tool gives you an accurate reversal; what you read into it is psychology, not signal.
Why does reversed speech sound like nonsense?
Because spoken language is not symmetric in time. The acoustic cues that make a word intelligible (attack of consonants, formant transitions) only work in the forward direction. Reversed, they become an unfamiliar sound that the brain cannot parse as the original words.
Is my music uploaded to a server?
No. The reversal runs in your browser via FFmpeg 8.1 WebAssembly. The file stays on your machine; nothing is transmitted. Only an anonymous run counter updates for signed-in dashboard stats, with no audio content attached.
What formats can I reverse and listen to?
MP3, WAV, FLAC, M4A, OGG, and Opus. The reversed output keeps the same format as the input and plays in the inline player regardless of format (your browser handles the playback codec).
How do I listen to only one part backwards?
Reversal flips the entire file, so first cut out the section you care about with audio-trimmer, then reverse that short clip. The result is just that part backwards.
How do I prove the reversal is genuine and not faked?
Reverse the reversed file. A true time mirror is its own inverse, so a second pass restores the forward-playing original. If it comes back sounding normal, the reversal was real.
How long a clip can I reverse on the free tier?
Up to 30 minutes and 50 MB per file on Free. Pro raises it to 120 minutes / 200 MB. For an entire album, split it first with audio-splitter.
Where did the ending of the song go?
It is now the beginning. Reversal flips the timeline, so the last few seconds of the original play first and the original intro plays last. Scrub to the far end of the reversed file to hear the original opening.
Does reversing reduce audio quality?
For WAV and FLAC, no — it is a lossless sample mirror. For MP3, M4A, OGG, and Opus, the reversal decodes and re-encodes the file, adding one lossy generation that is inaudible for casual listening.
Is it free and is there an account?
It is free and needs no account. Reverse as many clips as you like, one file at a time. Pro is only needed to exceed the 50 MB / 30-minute free-tier ceilings.
Privacy first
Every JAD Audio tool runs entirely in your browser via FFmpeg (WebAssembly) and RNNoise. Your audio files never leave your device — verified by zero outbound network requests during processing.