Skip to content

Instantly share code, notes, and snippets.

@kgriffs
Created September 7, 2017 15:46
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kgriffs/ced13cf4d28938d34e1e3c80778f75a8 to your computer and use it in GitHub Desktop.
Save kgriffs/ced13cf4d28938d34e1e3c80778f75a8 to your computer and use it in GitHub Desktop.
ffmpeg 5.1 downmix to dolby pro logic II
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