Audio Fade Tool
Generate FFmpeg afade commands for fade-in and fade-out effects on any audio file.
Fade Settings
Used to calculate fade-out start time. Run ffprobe -i file.mp3 to get duration.
Fade-in
Fade-out
FFmpeg Command
Filter Breakdown
afade Filter Reference
| Parameter | Values | Description |
|---|---|---|
| t | in | out | Fade direction |
| st | 0, 2.5, 120 … | Start time in seconds |
| d | 1, 3, 5 … | Fade duration in seconds |
| curve | tri, qsin, hsin … | Amplitude curve shape |
Full docs: ffmpeg -h filter=afade
or ffmpeg.org/ffmpeg-filters.html#afade
Copied!
Summary
Generate FFmpeg afade commands for fade-in and fade-out effects on any audio file.
How it works
- Enter the input file name and select its format.
- Set the fade-in duration (seconds from the start of the file).
- Set the fade-out duration and the total audio duration so the tool can calculate the correct start offset.
- Choose an output format and file name.
- Copy the generated FFmpeg command and run it in your terminal.
Use cases
- Add a professional fade-in to a podcast intro.
- Apply a smooth fade-out at the end of a music track.
- Add both fade-in and fade-out in a single FFmpeg pass.
- Prepare audio clips for video production with clean entry and exit.
- Batch-fade multiple tracks by adapting the generated command.
- Learn the afade filter syntax without memorizing the docs.
Frequently Asked Questions
Last updated: 2026-07-01 ·
Reviewed by Nham Vu