Skip to content
This repository has been archived by the owner on May 30, 2023. It is now read-only.

meh/rust-ffmpeg-sys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust FFI bindings for ffmpeg

Low-level bindings for ffmpeg autogenerated with bindgen. This crate supports cross-compilation automatically.

For higher-level library, see ffmpeg crate.

Building

By default, the crate will search for ffmpeg v4 installed on the system.

This crate can also download, build and statically link its own copy of ffmpeg if you enable build feature:

[dependencies]
ffmpeg-sys = { version = "4", features = ["build"] }

See Cargo features to control which codecs are included.