Andrew <ffmpeg-mail <at> andrewkilpatrick.org> writes: > ffmpeg -y -i input.mov -r 24 -pix_fmt rgb48le -vcodec tiff -ss 00:01:00 This command line does not seek, it decodes until 1:00 and throws everything away until then. Use "ffmpeg -ss 1:00 -i input.mov" to seek. Carl Eugen