Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save matthacksteiner/addd9651d918cd4274acc9bc47af1395 to your computer and use it in GitHub Desktop.
Save matthacksteiner/addd9651d918cd4274acc9bc47af1395 to your computer and use it in GitHub Desktop.
Convert all wav files in a directory to a mp3
for /R %f in ("*.wav") do (ffmpeg.exe -i "%~f" -acodec mp3 "%~pf%~nf.mp3")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment