Using ffmpeg to cut up video
        Posted  
        
            by Neil
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Neil
        
        
        
        Published on 2010-05-06T13:22:59Z
        Indexed on 
            2010/05/27
            8:51 UTC
        
        
        Read the original article
        Hit count: 217
        
ffmpeg
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?
© Stack Overflow or respective owner