Created
May 21, 2017 07:54
-
-
Save moshest/ef4ca732b5dfa76a4b7282b2c8afef67 to your computer and use it in GitHub Desktop.
Convert alac to aac with ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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