Skip to content

Instantly share code, notes, and snippets.

@MichaelGatesDev
Last active June 13, 2021 21:07
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 MichaelGatesDev/f90c720f0b7a4c103d9df6a7aa9c76a0 to your computer and use it in GitHub Desktop.
Save MichaelGatesDev/f90c720f0b7a4c103d9df6a7aa9c76a0 to your computer and use it in GitHub Desktop.
Convert all files in the current directory to MP3 via FFMPEG
for %%f in (*.flac) do ffmpeg -i "%%f" -acodec libmp3lame -ab 312k "%%~nf.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment