Skip to content

Instantly share code, notes, and snippets.

@MichaelGatesDev
Created December 29, 2016 13:23
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/1fe5ab082a7b02d07dd0268ba5db4d3c to your computer and use it in GitHub Desktop.
Save MichaelGatesDev/1fe5ab082a7b02d07dd0268ba5db4d3c to your computer and use it in GitHub Desktop.
Converts *.m4a to *.mp3 in the current folder (FFMPEG)
for %%f in (*.*) do ffmpeg -i "%%f" -acodec libmp3lame -ab 312k "%%f.mp3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment