Ana <analucero13 <at> gmail.com> writes: > I have a video that is a M4V format but when I put it in MediaInfo > it indicates it is a JPEG format.
The relevant point here is that FFmpeg indicates it is a mjpeg file. > So from that I understand it is a MJPEG format. Yes. > I am trying to convert it to an AVI format. I have used these > two codes: > > 1. ffmpeg -i mjpeg -vcodec copy out.avi > 2. ffmpeg -i input -vcodec mjpeg out.avi mjpeg files do not have a specified fps value / it is not specified how fast they should be played, you have to use the input parameter -r: $ ffmpeg -r 10 -i input.m4v -vcodec copy out.avi Please do not use screenshots on this mailing list, copy the console output into your email. Carl Eugen _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
