Created
May 14, 2014 20:38
-
-
Save Frodox/f8242a05efaaea9f8e18 to your computer and use it in GitHub Desktop.
Convert all mp3 to ogg
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
#!/bin/sh | |
# bitrate is "optimal" for every song | |
find -name '*.mp3' -print0 | xargs -0 -l -P 4 sh -c 'ffmpeg -v quiet -i "$0" -vn "${0%mp3}ogg"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment