ffmpeg降低图像质量,而不是尺寸

时间:2016-06-08 08:07:41

标签: image ffmpeg

我使用FFMPEG成功制作了视频缩略图。

ffmpeg -i 'video_location' -vf thumbnail,scale=160:120  -frames:v 1 'image_location.jpg'

有没有' ffmpeg'命令减少图像大小而不改变图像尺度??

1 个答案:

答案 0 :(得分:2)

删除缩放过滤器并使用qscale选项

ffmpeg -i 'video_location' -vf thumbnail -q:v 10 -vframes 1 'image_location.jpg'

尝试所需质量/尺寸的q值。