Copy multiple segments of the same video avconv

I am trying to copy multiple segments of one video file into one output video file I can only do this for one segment using the following code: avconv -i input.flv -ss 00:04:50 -t 00:04:00 -codec copy outputfile.flv
Is there a way to do this with multiple segments?

+3


source to share





All Articles