Show HN: Ez FFmpeg – Video editing in plain English

Published: (December 27, 2025 at 03:45 AM EST)
1 min read

Source: Hacker News

Overview

A CLI tool that simplifies common video and audio operations by abstracting away the complex ffmpeg syntax. Instead of memorizing long command lines, you can use natural‑language‑style commands.

How It Works

The tool parses concise commands and translates them into the appropriate ffmpeg calls behind the scenes.

Usage Examples

Convert a video to GIF

ff convert video.mp4 to gif

Equivalent ffmpeg command:

ffmpeg -i video.mp4 -vf "fps=15,scale=480:-1:flags=lanczos" -loop 0 output.gif

Compress a video to a target size

ff compress video.mp4 to 10mb

Trim a video

ff trim video.mp4 ...

Feel free to explore additional operations by following the same natural‑language pattern.

Back to Blog

Related posts

Read more »