FormatDrop
How-To Guide

How to Convert JPG to WebP on Mac

macOS makes WebP conversion straightforward with built-in tools and easy-to-install packages. Whether you want a one-command Terminal solution, a GUI tool, or an Automator workflow for batch conversion, this guide covers the fastest methods for converting JPG to WebP on Mac.

Step-by-step instructions

  1. 1

    Method 1: sips (built-in Mac command line)

    macOS includes sips (Script Image Processing System) which supports WebP: sips -s format webp input.jpg --out output.webp. Batch convert a folder: for f in *.jpg; do sips -s format webp "$f" --out "${f%.jpg}.webp"; done. No additional software required — sips is built into every Mac.

    Go to converter
  2. 2

    Method 2: Browser converter (no install needed)

    Go to formatdrop.com in Safari or Chrome on Mac. Drop your JPG. Select WebP output. Set quality (85% recommended). Download. Works with any Mac without any software installation.

  3. 3

    Method 3: cwebp via Homebrew

    Install Homebrew (brew.sh): /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)". Then: brew install webp. Convert: cwebp -q 85 input.jpg -o output.webp. Batch: for f in *.jpg; do cwebp -q 85 "$f" -o "${f%.jpg}.webp"; done. cwebp is Google's reference WebP encoder — produces optimal quality.

  4. 4

    Method 4: Automator workflow for right-click conversion

    Open Automator → File → New → Quick Action. Workflow receives: image files. Add action: 'Run Shell Script' → set to: for f in "$@"; do sips -s format webp "$f" --out "${f%.jpg}.webp"; done. Save as 'Convert to WebP'. Now right-click any JPG in Finder → Quick Actions → Convert to WebP.

Why convert JPG to WEBP?

Mac developers and web designers frequently need to convert images to WebP for website optimization. macOS's built-in sips command handles WebP natively (added in macOS Big Sur), making conversion possible without any third-party tools. For high-volume conversion or precise quality control, cwebp via Homebrew gives the best results.

Your files never leave your device

FormatDrop runs the conversion engine entirely inside your browser using WebAssembly. No file upload. No server. Nothing stored. You can verify this by opening DevTools → Network tab and watching: zero upload requests.

Frequently asked questions

Does macOS support WebP natively?
Yes — since macOS 11 (Big Sur, 2020), macOS supports WebP in Preview, sips, and Quick Look. You can view WebP files in Finder, open them in Preview, and convert using sips. Earlier macOS versions don't support WebP natively.
What quality setting for cwebp on Mac?
cwebp quality values: -q 80 for standard web use (good balance of size/quality), -q 85 for higher quality web images, -q 90 for near-lossless quality, -lossless for exactly lossless WebP. For photos: 80-85. For detailed images or UI screenshots: 85-90.
Convert JPG to WEBP Now — Free

No account. No upload. Works in any browser.