Created
June 8, 2011 23:52
-
-
Save crmccreary/1015744 to your computer and use it in GitHub Desktop.
Convert .ogg to .mp3
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
for name in *.ogg; do ffmpeg -ab 192k -i "$name" -map_meta_data 0:0,s0 "$(basename "$name" .ogg).mp3"; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment