2017-03-29 4:17 GMT+02:00 Cecil Westerhof <[email protected]>: > You are right. But it was only a temporary hack, because > what I really wanted was: > ffmpeg -ss 16:28 -t 5 -i input.mov output%03d.jpg
Just like to note that the input option "-t" is supposed to work but sometimes has side-effects (or fails), the safe way to do it is: $ ffmpeg -ss x -i input -t y out unless you need the input option. Carl Eugen _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
