Created
March 6, 2015 13:54
-
-
Save zenoando/06db39a1bf21129a39e0 to your computer and use it in GitHub Desktop.
ffmpeg-mp4-to-mp3.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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