Created
September 7, 2017 15:46
-
-
Save kgriffs/ced13cf4d28938d34e1e3c80778f75a8 to your computer and use it in GitHub Desktop.
ffmpeg 5.1 downmix to dolby pro logic II
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
for f in *.flac | |
do | |
ffmpeg -i "$f" -ac 2 -af "aresample=matrix_encoding=dplii" "./downmixed/${f%.*}.flac" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment