mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 12:48:09 +08:00
For instance, add multiple `streamid` in the output can be done like this: ffmpeg.input(url).output('video.mp4', streamid=['0:0x101', '1:0x102']) will output this command line ffmpeg -i video.mp4 -streamid 0:0x101 -streamid 1:0x102 video.mp4