README
A simple way to use ffmpeg without learning the commands.
fftool is a menu-based program that lets you do common video and audio tasks without typing ffmpeg commands. You pick what you want to do from a menu, fill in a few fields, and fftool shows you the command it's about to run — then you can run it or change your mind.
ffmpeg is powerful but the commands are hard to remember. The flags have specific orders, the syntax is confusing, and some operations need multiple commands run in sequence.
fftool remembers all of that for you. It's like having a cheat sheet that actually runs the commands for you.
sudo apt install ffmpeg on Debian/Ubuntu)If you just want to run it, you need the compiled binary. Check the releases or build it yourself.
In the fftool folder:
go mod tidy go build -o fftool .
Then run:
./fftool
./fftool| Key | What it does |
|---|---|
| ↑ / ↓ | Move around |
| Enter | Select / Confirm |
| Esc | Go back |
| Tab | Next field |
| q | Quit |
| c | Copy command to clipboard |
No. That's the point. But fftool shows you the actual ffmpeg command it's running, so you can learn by watching. Over time, you'll recognize the patterns and maybe start running commands yourself.
"ffmpeg not found" — Install ffmpeg: sudo apt install ffmpeg
"terminal too small" — Make your terminal window wider (at least 60 columns)
Build fails — Install Go 1.21 or later
This is a simple tool. If something doesn't work, check that:
ffmpeg -version)MIT