FFmpeg command list for audio conversion
- Qayyum
- December 18, 2017
- 11,530
Here is comprehensive list of ffmpeg commands to convert between various audio media/file formats. Following includes from/to conversions of aac, amr, aiff, flac, mp3, ogg, wav and wma. We also posted FFmpeg command list for video conversion a while back.
Ffmpeg commands for AAC
Ffmpeg AAC to AMRffmpeg -y -i in.aac -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.aac out.aiff
ffmpeg -y -i in.aac out.flac
ffmpeg -y -i in.aac out.mp3
ffmpeg -y -i in.aac -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.aac out.wav
ffmpeg -y -i in.aac out.wma
Ffmpeg commands for AMR
Ffmpeg AMR to AACffmpeg -y -i in.amr out.aac
ffmpeg -y -i in.amr out.aiff
ffmpeg -y -i in.amr out.flac
ffmpeg -y -i in.amr out.mp3
ffmpeg -y -i in.amr -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.amr out.wav
ffmpeg -y -i in.amr out.wma
Ffmpeg commands for AIFF
Ffmpeg AIFF to AACffmpeg -y -i in.aiff out.aac
ffmpeg -y -i in.aiff -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.aiff out.flac
ffmpeg -y -i in.aiff out.mp3
ffmpeg -y -i in.aiff -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.aiff out.wav
ffmpeg -y -i in.aiff out.wma
Ffmpeg commands for FLAC
Ffmpeg FLAC to AACffmpeg -y -i in.flac out.aac
ffmpeg -y -i in.flac -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.flac out.aiff
ffmpeg -y -i in.flac out.mp3
ffmpeg -y -i in.flac -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.flac out.wav
ffmpeg -y -i in.flac out.wma
Ffmpeg commands for MP3
Ffmpeg MP3 to AACffmpeg -y -i in.mp3 out.aac
ffmpeg -y -i in.mp3 -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.mp3 out.aiff
ffmpeg -y -i in.mp3 out.flac
ffmpeg -y -i in.mp3 -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.mp3 out.wav
ffmpeg -y -i in.mp3 out.wma
Ffmpeg commands for OGG
Ffmpeg OGG to AACffmpeg -y -i in.ogg out.aac
ffmpeg -y -i in.ogg -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.ogg out.aiff
ffmpeg -y -i in.ogg out.flac
ffmpeg -y -i in.ogg out.mp3
ffmpeg -y -i in.ogg out.wav
ffmpeg -y -i in.ogg out.wma
Ffmpeg commands for WAV
Ffmpeg WAV to AACffmpeg -y -i in.wav out.aac
ffmpeg -y -i in.wav -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.wav out.aiff
ffmpeg -y -i in.wav out.flac
ffmpeg -y -i in.wav out.mp3
ffmpeg -y -i in.wav -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.wav out.wma
Ffmpeg commands for WMA
Ffmpeg WMA to AACffmpeg -y -i in.wma out.aac
ffmpeg -y -i in.wma -ar 8000 -ac 1 out.amr
ffmpeg -y -i in.wma out.aiff
ffmpeg -y -i in.wma out.flac
ffmpeg -y -i in.wma out.mp3
ffmpeg -y -i in.wma -c:a libvorbis -q:a 4 out.ogg
ffmpeg -y -i in.wma out.wav