FFmpeg Sidecar 🏍

Wrap a standalone FFmpeg binary in an intuitive Iterator interface.

Motivation

The core goal of this project is to provide a method of interacting with any video as if it were an array of raw RGB frames.

Of course, that's what video is, fundamentally, but there is a whole pandora's box of complexity in terms of receiving and decoding video before you get there.

Using FFmpeg as the core engine provides interoperability between a massive range of formats, containers, extensions, protocols, encoders, decoders, hardware accelerations, and more.

Why CLI?

One method of using FFmpeg is low-level bindings to the code used inside the CLI itself -- there are good crates in the Rust ecosystem that do this.

Low level bindings have drawbacks, though:

By wrapping the CLI, this crate avoids those downsides, and also solves some of the pain points that you would encounter if you were to use the CLI directly on its own:

The only remaining downside is the size of the FFmpeg binary itself, but it's less than 100MB when zipped.

Getting started

1. Download FFmpeg

First you need an FFmpeg binary. If you don't already have one, head to https://ffmpeg.org. Either install it globally (e.g. add to PATH on windows), or simply place the executable adjacent to your Rust binary target. When you package and distribute

2. Cargo install

On the Rust side, it has zero Cargo dependencies! 🎉

console cargo install ffmpeg-sidecar

3. Import and use

```rs use ffmpeg_sidecar::{FfmpegCommand, FfmpegChild, FfmpegEvent};

fn main() { // similar to std::process::Command let command = FfmpegCommand::new() .testsrc() // generate a test pattern video .rawvideo(); // pipe raw video output

// similar to std::process::Child let child: FfmpegChild = command .spawn() .unwrap();

// Iterator over all messages and output let mut iter: FfmpegIterator = child.eventsiter(); iter.foreach(|event: FfmpegEvent| { match event { FfmpegEvent::OutputFrame(frame) => { let _pixels = frame.data; // <- raw RGB pixels! 🎨 }, FfmpegEvent::LogInfo(string) => { println!("ffmpeg log info: {}", string); }, _ => { // many other kinds of events, including: // - parsed inputs, outputs, streams, and metadata // - errors and warnings // - and more } } }); } ```

For a myriad of examples, check any of the unit tests in /src/test.rs in this repo.

Todo

See also

Inspired loosely by Node.js fluent-ffmpeg, which does something similar in Javascript