Skip to content

Instantly share code, notes, and snippets.

@moshest
Created May 21, 2017 07:54
Show Gist options
  • Save moshest/ef4ca732b5dfa76a4b7282b2c8afef67 to your computer and use it in GitHub Desktop.
Save moshest/ef4ca732b5dfa76a4b7282b2c8afef67 to your computer and use it in GitHub Desktop.
Convert alac to aac with ffmpeg
if not exist "output" mkdir output
for /r path %%var in (*.m4a) do ffmpeg -i %%var -c:a libfdk_aac -b:a 320k output\%%var.m4a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment