ffmpeg -ss 00:05:20 -i input.mp4 -t 00:10:00 -c:v copy -c:a copy output3.mp4
extracts the video segment quickly because of the input seek -ss being placed before -i.
Which is the equivalent expression in ffmpeg-python?
ffmpeg -ss 00:05:20 -i input.mp4 -t 00:10:00 -c:v copy -c:a copy output3.mp4
extracts the video segment quickly because of the input seek -ss being placed before -i.
Which is the equivalent expression in ffmpeg-python?