On 03/10/14 23:46, [email protected] wrote:
Hi. I am trying to figure out how to do something in avconv that I could do in ffmpeg. Apparently the syntax has changed or something, but anyway, what I am trying to do is take a program recorded using a satellite receiver that is saved to a .ts file and convert the audio to 5.1. The video is fine as is, but the audio is sent in three separate streams (there are actually more bout the sic channels needed for 5.1 are in the first three)/ Each stream contains two channels of audio and they are arranged as follows: First stream: Left and Right channels Second stream: Center and LFE channels Third stream: Left surround and Right surround channels. Now in ffmpeg on my OS X box I can do this to convert the file to normal 5.1: ffmpeg -i "original program.ts" -c:v copy -filter_complex '[0:1][0:2][0:3]amerge=inputs=3,pan=5.1:FL=c0:FR=c1:FC=c2:LFE=c3:BL=c4:BR=c5' -c:a mp2 "converted program.ts"
Use a version of avconv that supports it. filter_complex had been introduced in avconv and copied back to ffmpeg later.
_______________________________________________ libav-tools mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-tools
