I am trying to split a video (.avi) file with duration of 1 hour to 8 minutes. I am using the following command
ffmpeg -i videos_22_05_18/cnbc.avi -ss 00:00:00 -to 00:08:00 -c copy 1.avi
But it makes a video of 37 minutes instead and also the audio quality is too fast.
I compared the specifications of the original .avi file and the resulting one, and the only difference is that of bitrate.
Bitrate of original file is 646k while that of splitted file is 1126.
I have literally tried every thing. like using
ffmpeg -i videos_22_05_18/cnbc.avi -ss 00:00:00 -to 00:08:00 -c copy -b 646k 1.avi
AND
ffmpeg -i videos_22_05_18/cnbc.avi -ss 00:00:00 -to 00:08:00 -c copy -async 1 1.avi
AND
ffmpeg -i videos_22_05_18/cnbc.avi -ss 00:00:00 -to 00:08:00 -c copy -b 646k -async 1 1.avi
AND
ffmpeg -i videos_22_05_18/cnbc.avi -ss 00:00:00 -to 00:08:00 -vcodec copy -acodec copy -b 646k 1.avi
AND MANY MORE combinations
Nothing seems to work I don't know why it is happening like this. PLease help.