I'm using ffmpeg to cut a video. Here is the input information:
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 5113 kb/s, 25 fps, 25 tbr, 12800 tbn, 50 tbc (default)
And this is the command I use:
ffmpeg -y -ss 10 -t 5 -i test.mp4 -c copy output.mp4
But the output duration is about 9.66 seconds.
It worked when I removed the '-c copy' option or the input doesn't contain the 'tv, bt709' tag. But it's slower.
I wonder how I can use '-c copy' and get the right piece of video I need?