Skip to content

Instantly share code, notes, and snippets.

@hysios
Last active January 12, 2017 06:10
Show Gist options
  • Save hysios/d9a991e86845a368544187efc0af167d to your computer and use it in GitHub Desktop.
Save hysios/d9a991e86845a368544187efc0af167d to your computer and use it in GitHub Desktop.
将所有背景音乐转换成 底 bit 的音轨
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