WebP to JPG, drop a WebP file and get a JPG instantly
WebP to JPG Guide

How to Convert WebP to JPG via Command Line

Updated May 2026 5 min read By the WebP to JPG team

Quick answer

Use ImageMagick: convert input.webp output.jpg. Or ffmpeg: ffmpeg -i input.webp output.jpg. Fastest for batches of 50+ files.

Command-line tools are the fastest way to convert hundreds of WebP files at once, especially for automation and scripting.

convertwebp.site · WebP to JPG
Drop WebP files here or click to choose . up to 200 at once
WEBP banner-hero.webp Done . 0.9s
WEBP product-shot.webp Done . 1.1s
WEBP icon-pack.webp 82%
3 of 28 converted 0 uploaded
All conversion happens in your browser. Files never reach a server.

Installing ImageMagick

Mac: brew install imagemagick

Linux: sudo apt install imagemagick

Windows: download installer from imagemagick.org

Single file conversion

convert input.webp output.jpg

Or with quality setting: convert input.webp -quality 85 output.jpg

Batch convert all WebP in a folder

mogrify -format jpg *.webp

This overwrites WebP files. To preserve originals: for f in *.webp; do convert \"$f\" \"${f%.webp}.jpg\"; done

Using ffmpeg instead

ffmpeg -i input.webp -q:v 5 output.jpg

Quality range: 1-31 (lower is better).

At-a-glance comparison

ToolSpeed (100 files)EaseScripting
ImageMagick10-20 secondsEasyExcellent
ffmpeg20-30 secondsEasyExcellent
Chrome extension30-60 secondsVery easy (GUI)Not applicable

Convert WebP Via CLI

WebP to JPG converts WebP images to JPG or PNG right inside Chrome. No upload, no account, no watermark.

Add to Chrome, free

Frequently asked questions

Which is faster, ImageMagick or ffmpeg?
ImageMagick typically faster for image-only conversions.
Can I use these tools for automation?
Yes. Both are command-line based and scriptable.

More by Peak Productivity

Free Chrome tools, ranked by what people actually install

Updates every day from real install counts and ship dates.