https://github.com/meh/rust-ffmpeg-sys
moved to meh/rust-ffmpeg
https://github.com/meh/rust-ffmpeg-sys
Last synced: 3 months ago
JSON representation
moved to meh/rust-ffmpeg
- Host: GitHub
- URL: https://github.com/meh/rust-ffmpeg-sys
- Owner: meh
- Archived: true
- Created: 2015-05-02T17:27:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T12:01:24.000Z (about 2 years ago)
- Last Synced: 2025-04-01T09:08:17.784Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 305 KB
- Stars: 144
- Watchers: 9
- Forks: 87
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://lib.rs/ffmpeg).
## 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:
```toml
[dependencies]
ffmpeg-sys = { version = "4", features = ["build"] }
```See [Cargo features](https://github.com/meh/rust-ffmpeg/blob/HEAD/Cargo.toml) to control which codecs are included.