Using ffmpeg to cut up video
        Posted  
        
            by Neil
        on Super User
        
        See other posts from Super User
        
            or by Neil
        
        
        
        Published on 2010-05-06T14:12:17Z
        Indexed on 
            2010/05/06
            14:18 UTC
        
        
        Read the original article
        Hit count: 307
        
I am using ffmpeg like this e.g.:
ffmpeg -i input.wmv -ss 60 -t 60 -acodec copy -vcodec copy output.wmv
to cut out a section of a large file. The -ss part works fine but the -t is ignored. That is, it correctly removes the first -ss seconds but then just keeps going to the end of the input with the copy.
Is there a way to use ffmpeg to cut off the end of a video without recoding it?
© Super User or respective owner