FFMPEG:从 jpg 到 avi 没问题,但尺寸和质量较差
我有六张 .jpg 图像,尺寸为 350x400(宽x高)。 我想把它们变成一个高质量的 avi 文件(但不要太重),并且尺寸与
我正在做的相同:
/var/www/html/folder/ffmpeg/ffmpeg -y -r 0.5 -i myfolder/434420image%05d.jpg -vcodec mpeg4 -s qcif -r 0.5 myfolder/434420img_tmp.avi
我有 avi 文件,但大小为 127x142,分辨率很糟糕。
我做错了什么?
多谢
I have six .jpg images with a size 350x400 (WxH).
I want to turn them into an avi file of a good quality (but not too heavy) and with same dimensions
I'm doing:
/var/www/html/folder/ffmpeg/ffmpeg -y -r 0.5 -i myfolder/434420image%05d.jpg -vcodec mpeg4 -s qcif -r 0.5 myfolder/434420img_tmp.avi
And I'm having the avi file, but with a size of 127x142 and with a terrible resolution.
What am I doing wrong?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
-vcodec copy
希望它能够将 AVI 标头中的 fourcc 正确设置为 MJPEG 使用的值。You could use
-vcodec copy
in the hope that it correctly sets the fourcc in the AVI header to the one used by MJPEG.