ffmpeg : Add silence to the end of an audio file
English
Русский
Español
ภาษาไทย
中文
한국어
日本語
Update 16 JAN 2024
vr180g.com
ffmpeg
DanceXR : ffmpeg
Tips
ffmpeg -i input.wav -af "apad=pad_dur=10" output.wav
Add 10 seconds of silence to input.wav.(Add to end)
Output to output.wav. input.wav does not change.
You can convert from WAV to MP3 by changing output.wav to output.mp3.
If you change 10 to 3, the additional time will be 3 seconds.
vr180g.com