Skip to content

Instantly share code, notes, and snippets.

@anphetamina
Created July 19, 2020 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anphetamina/4085606e8de5613ea87482dcf792a6c4 to your computer and use it in GitHub Desktop.
Save anphetamina/4085606e8de5613ea87482dcf792a6c4 to your computer and use it in GitHub Desktop.
Convert all .wav files into the current folder into 320kbps mp3 files
for %i in (*.wav) do ffmpeg -i "%i" -b:a 320k "%~ni.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment