Log in

View Full Version : how to image2avi with resize option ?


mehdi0016
2nd May 2009, 16:16
hi
i use this command for convert series of images into avi :
ffmpeg.exe -f image2 -r 25 -vcodec copy -i pic%d.jpg -r 25 -s 352×240 output.avi
my image size is 640×480 and i want to resize them, but the output avi file size remain 640×480 ?
so how could i convert images to avi with desired size ?
(i need hi quality and uncompressed avi)
thanks

nm
2nd May 2009, 18:23
-vcodec copy means that the input is copied as-is, without modifications such as decoding, scaling and re-encoding. Try -vcodec rawvideo instead, or ffvhuff or ffv1 if lossless encoding is ok.

mehdi0016
2nd May 2009, 21:15
thanks man.