[FFmpeg-user] Conversion from WMV to M2V - Lost Frame Problem
Carl Eugen Hoyos
cehoyos at ag.or.at
Tue Nov 18 23:53:28 CET 2014
Andrew Arthur <ikrananka <at> hotmail.com> writes:
> However, the output from ffmpeg shows in
> VirtualDub as being 1036 frames
Please run:
$ ffmpeg -i output.m2v -f null -
One of the last lines of the console output sill
show you the actual number of frames in the m2v
file.
If you don't believe the number the following
command will output every single frame of your
video as a raw mpeg2video file.
$ ffmpeg -i output.m2v -vcodec copy -f image2 raw%4d.m2v
The following will output a jpg for every
single frame:
$ ffmpeg -i output.m2v out%4d.jpg
Please do not top-post here, Carl Eugen
More information about the ffmpeg-user
mailing list