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.

[[ad]]

Ffmpeg commands for AAC

Ffmpeg AAC to AMR ffmpeg -y -i in.aac -ar 8000 -ac 1 out.amr Ffmpeg AAC to AIFF ffmpeg -y -i in.aac out.aiff Ffmpeg AAC to FLAC ffmpeg -y -i in.aac out.flac Ffmpeg AAC to MP3 ffmpeg -y -i in.aac out.mp3 Ffmpeg AAC to OGG ffmpeg -y -i in.aac -c:a libvorbis -q:a 4 out.ogg Ffmpeg AAC to WAV ffmpeg -y -i in.aac out.wav Ffmpeg AAC to WMA ffmpeg -y -i in.aac out.wma

Ffmpeg commands for AMR

Ffmpeg AMR to AAC ffmpeg -y -i in.amr out.aac Ffmpeg AMR to AIFF ffmpeg -y -i in.amr out.aiff Ffmpeg AMR to FLAC ffmpeg -y -i in.amr out.flac Ffmpeg AMR to MP3 ffmpeg -y -i in.amr out.mp3 Ffmpeg AMR to OGG ffmpeg -y -i in.amr -c:a libvorbis -q:a 4 out.ogg Ffmpeg AMR to WAV ffmpeg -y -i in.amr out.wav Ffmpeg AMR to WMA ffmpeg -y -i in.amr out.wma

Ffmpeg commands for AIFF

Ffmpeg AIFF to AAC ffmpeg -y -i in.aiff out.aac Ffmpeg AIFF to AMR ffmpeg -y -i in.aiff -ar 8000 -ac 1 out.amr Ffmpeg AIFF to FLAC ffmpeg -y -i in.aiff out.flac Ffmpeg AIFF to MP3 ffmpeg -y -i in.aiff out.mp3 Ffmpeg AIFF to OGG ffmpeg -y -i in.aiff -c:a libvorbis -q:a 4 out.ogg Ffmpeg AIFF to WAV ffmpeg -y -i in.aiff out.wav Ffmpeg AIFF to WMA ffmpeg -y -i in.aiff out.wma

Ffmpeg commands for FLAC

Ffmpeg FLAC to AAC ffmpeg -y -i in.flac out.aac Ffmpeg FLAC to AMR ffmpeg -y -i in.flac -ar 8000 -ac 1 out.amr Ffmpeg FLAC to AIFF ffmpeg -y -i in.flac out.aiff Ffmpeg FLAC to MP3 ffmpeg -y -i in.flac out.mp3 Ffmpeg FLAC to OGG ffmpeg -y -i in.flac -c:a libvorbis -q:a 4 out.ogg Ffmpeg FLAC to WAV ffmpeg -y -i in.flac out.wav Ffmpeg FLAC to WMA ffmpeg -y -i in.flac out.wma

Ffmpeg commands for MP3

Ffmpeg MP3 to AAC ffmpeg -y -i in.mp3 out.aac Ffmpeg MP3 to AMR ffmpeg -y -i in.mp3 -ar 8000 -ac 1 out.amr Ffmpeg MP3 to AIFF ffmpeg -y -i in.mp3 out.aiff Ffmpeg MP3 to FLAC ffmpeg -y -i in.mp3 out.flac Ffmpeg MP3 to OGG ffmpeg -y -i in.mp3 -c:a libvorbis -q:a 4 out.ogg Ffmpeg MP3 to WAV ffmpeg -y -i in.mp3 out.wav Ffmpeg MP3 to WMA ffmpeg -y -i in.mp3 out.wma

Ffmpeg commands for OGG

Ffmpeg OGG to AAC ffmpeg -y -i in.ogg out.aac Ffmpeg OGG to AMR ffmpeg -y -i in.ogg -ar 8000 -ac 1 out.amr Ffmpeg OGG to AIFF ffmpeg -y -i in.ogg out.aiff Ffmpeg OGG to FLAC ffmpeg -y -i in.ogg out.flac Ffmpeg OGG to MP3 ffmpeg -y -i in.ogg out.mp3 Ffmpeg OGG to WAV ffmpeg -y -i in.ogg out.wav Ffmpeg OGG to WMA ffmpeg -y -i in.ogg out.wma

Ffmpeg commands for WAV

Ffmpeg WAV to AAC ffmpeg -y -i in.wav out.aac Ffmpeg WAV to AMR ffmpeg -y -i in.wav -ar 8000 -ac 1 out.amr Ffmpeg WAV to AIFF ffmpeg -y -i in.wav out.aiff Ffmpeg WAV to FLAC ffmpeg -y -i in.wav out.flac Ffmpeg WAV to MP3 ffmpeg -y -i in.wav out.mp3 Ffmpeg WAV to OGG ffmpeg -y -i in.wav -c:a libvorbis -q:a 4 out.ogg Ffmpeg WAV to WMA ffmpeg -y -i in.wav out.wma

Ffmpeg commands for WMA

Ffmpeg WMA to AAC ffmpeg -y -i in.wma out.aac Ffmpeg WMA to AMR ffmpeg -y -i in.wma -ar 8000 -ac 1 out.amr Ffmpeg WMA to AIFF ffmpeg -y -i in.wma out.aiff Ffmpeg WMA to FLAC ffmpeg -y -i in.wma out.flac Ffmpeg WMA to MP3 ffmpeg -y -i in.wma out.mp3 Ffmpeg WMA to OGG ffmpeg -y -i in.wma -c:a libvorbis -q:a 4 out.ogg Ffmpeg WMA to WAV ffmpeg -y -i in.wma out.wav [[ad]]