Any chance that someone clever could create a plugin that can downmix from 5.1/7.1 to Stereo?
Get Channel Count:
ffprobe -show_entries stream=channels -select_streams a:0 -of compact=p=0:nk=1 -v 0 "my-file.mp4"
Downmix
ffmpeg -i "my-file.mp4" -map 0:0 -map 0:1 -c:v:0 copy -c:a:0 aac -ac 2 "my-file-stereo.mp4"
Any chance that someone clever could create a plugin that can downmix from 5.1/7.1 to Stereo?
Get Channel Count:
ffprobe -show_entries stream=channels -select_streams a:0 -of compact=p=0:nk=1 -v 0 "my-file.mp4"Downmix