https://github.com/annimon/effy
TUI FFmpeg Helper
https://github.com/annimon/effy
ffmpeg ffmpeg-command ratatui rust tui video-processing
Last synced: about 1 month ago
JSON representation
TUI FFmpeg Helper
- Host: GitHub
- URL: https://github.com/annimon/effy
- Owner: aNNiMON
- License: mit
- Created: 2025-09-16T20:25:42.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-09-16T21:13:33.000Z (5 months ago)
- Last Synced: 2025-09-16T23:19:00.218Z (5 months ago)
- Topics: ffmpeg, ffmpeg-command, ratatui, rust, tui, video-processing
- Language: Rust
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# effy
A small and friendly terminal FFmpeg helper that simplifies common tasks.
[](https://projects.annimon.com/projects/effy)
[](https://github.com/aNNiMON/effy/releases)
[](https://ratatui.rs/)

## Features
- change a video resolution, bitrate, frame rate, speed
- change an audio bitrate, volume, pitch, tempo
- apply audio effects (crystalizer)
- extract or remove audio from the video
- trim video/audio
- use hardware acceleration
- apply presets (preload in the UI, or immediately from the CLI)
## Usage
> [!IMPORTANT]
> `ffmpeg` and `ffprobe` must be [installed](https://ffmpeg.org/download.html) and available in the `PATH` env variable
```bash
effy input.mp4
effy "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
# Presets
effy --preset "noaudio:1;scale:250;output:mp4" input.mp4
effy --preset "noaudio:1;scale:250;output:mp4" --apply input.mp4
```
## Install
Download pre-compiled binaries from [Releases](https://github.com/aNNiMON/effy/releases)
Or install using `cargo`:
```bash
cargo install --locked effy
```
Or compile from source:
1. Install [Rustup](https://rustup.rs/)
2. Clone this repo
3. `cargo build --release`
4. Navigate to `./target/release` and look for `effy` binary
## Telegram bot
If you're looking for a self-hosted server-side alternative that works with Telegram media, look no further: [effybot](https://github.com/aNNiMON/effybot)