Last active
January 12, 2017 06:10
-
-
Save hysios/d9a991e86845a368544187efc0af167d to your computer and use it in GitHub Desktop.
将所有背景音乐转换成 底 bit 的音轨
This file contains hidden or 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
for f in *.aac; do ffmpeg -y -i $f -c:a libfdk_aac -b:a 32k -ac 1 $(basename $f .aac).m4a; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment