Skip to content

Instantly share code, notes, and snippets.

@zenoando
Created March 6, 2015 13:54
Show Gist options
  • Save zenoando/06db39a1bf21129a39e0 to your computer and use it in GitHub Desktop.
Save zenoando/06db39a1bf21129a39e0 to your computer and use it in GitHub Desktop.
ffmpeg-mp4-to-mp3.sh
ffmpeg -i video.mp4 -f mp3 -ab 192000 -vn music.mp3
# some bitrate
ffmpeg -i video.mp4 -b:a 192K -vn music.mp3
# variable bitrate
ffmpeg -i k.mp4 -q:a 0 -map a k.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment