Created
September 5, 2014 22:25
-
-
Save frankIT/1333abb4991b20eab733 to your computer and use it in GitHub Desktop.
convert bulk ogg files to mp3 with ffmpeg under windows
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
for %%a in ("*.ogg") do ffmpeg -i "%%a" -acodec libmp3lame "mp3\%%~na.mp3" | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment