Skip to content

Instantly share code, notes, and snippets.

@frankIT
Created September 5, 2014 22:25
Show Gist options
  • Save frankIT/1333abb4991b20eab733 to your computer and use it in GitHub Desktop.
Save frankIT/1333abb4991b20eab733 to your computer and use it in GitHub Desktop.
convert bulk ogg files to mp3 with ffmpeg under windows
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