Hi all . i got and avi video that is 1:27:58 in duration. I wonder how i can splitt this video to tow parts using ffmpeg without losing quality and without transcoding?
+ Reply to Thread
Results 1 to 6 of 6
-
-
use -ss for start time and -t for duration
Your cuts might not be accurate unless the time lies exactly on a keyframe (there might be overlap or missing frames depending on where the cut point lies in relation to the keyframe)
e.g. from start to 44 minutes
ffmpeg -i input.avi -vcodec copy -acodec copy -t 00:44:00 output1.avi
e.g. from 44 minutes to end
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:44:00 output2.avi -
thanks posion for help. I tried your first command and the output has no voice, only noises(video is ok) ! why this happened and how to fix it ?
-
Similar Threads
-
Split AVI video into several parts
By phedon in forum Newbie / General discussionsReplies: 5Last Post: 27th Jan 2013, 11:18 -
MKV Audio + AVI Video to avi using ffmpeg?
By kwanbis in forum Video ConversionReplies: 9Last Post: 15th Apr 2012, 20:45 -
How can I delete existing subtitles in a AVI video using ffmpeg?
By itegil in forum ffmpegX general discussionReplies: 3Last Post: 6th Sep 2010, 07:02 -
joining two avi parts that overlap?
By nok32 in forum Newbie / General discussionsReplies: 6Last Post: 16th Nov 2008, 03:40 -
blot out parts of a avi video
By isogonic in forum EditingReplies: 3Last Post: 18th Oct 2008, 18:53