Skip to content

Instantly share code, notes, and snippets.

@Bonno
Last active August 29, 2015 14:15
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 Bonno/d26613847a4c0cf8b983 to your computer and use it in GitHub Desktop.
Save Bonno/d26613847a4c0cf8b983 to your computer and use it in GitHub Desktop.
Convert m4a to mp3 with ffmpeg & lame
for /f "delims=" %%a IN ('dir /b *.m4a') do (
ffmpeg -i "%%a" "%%~na.wav"
lame -V2 --vbr-new -q0 --lowpass 19.7 "%%~na.wav" "%%~na.mp3"
del "%%~na.wav"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment