Last active
March 10, 2016 13:54
-
-
Save dublado/1478494 to your computer and use it in GitHub Desktop.
ffmpeg converter mp4 em mp3
This file contains hidden or 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 input.m4downgrade svn -acodec libmp3lame -ab 128k output.mp3 | |
| #!/bin/bash | |
| for i in *.mp4 | |
| do | |
| ffmpeg -i "$i" -ab 128k "${i%mp4}mp3" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment