Tested tool guide
Tested browser tools
Checked August 15, 2026
What Audio Reverser does, with a checked example
This tool takes an audio file, decodes it into its raw samples, and writes those samples out in reverse order so the clip plays from end to start. Duration, sample rate, and pitch are untouched - only the direction of playback changes. The thing people get wrong most often is expecting reversed speech to reveal a hidden intelligible message; in practice it almost always comes out as an unintelligible warble, not backward-masked words. A fade-in at the start of the original also becomes a fade-out at the end of the reversed file, since the whole envelope mirrors around the midpoint.
Worked example
A concrete input and expected output from the current implementation.
Input
a 2.0-second, 44.1kHz stereo WAV file of a hi-hat swell that fades in
->
Expected output
a 2.0-second, 44.1kHz stereo WAV file with the same sample count, sample rate, and channel count, where the swell now fades out - the sound plays end-to-start
Reversal only reorders the sample sequence per channel; it cannot change duration, sample rate, or channel count, so those stay identical while the fade direction flips. The decoded-and-re-encoded WAV is not guaranteed to keep the exact chunk layout or metadata of the original file, only the audio properties listed above.