320kbps
← Back to presets

Image → WebP

Convert an image to WebP.

input.jpg

Selected file

Ready

FFmpeg command

ffmpeg -i 'input.jpg' -c:v libwebp -q:v 80 'output.webp'

About this command

This command converts the input image to WebP. The quality value controls the balance between image quality and file size.

-i

Specifies the input image file.

-c:v libwebp

Encodes the image using the WebP image codec.

-q:v

Controls WebP image quality. Higher values generally produce better quality and larger files.