docs.rs failed to build avio-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
avio-0.7.2
avio
Safe, high-level audio/video/image processing for Rust — backend-agnostic multimedia toolkit.
⚠️ Coming Soon — This crate is a placeholder and not yet fully implemented. The core crates (
ff-probe,ff-decode,ff-encode) are under active development.
Overview
avio is the facade crate for the ff-* crate family. It re-exports the public APIs of all member crates behind feature flags, so you can depend on a single crate and opt into only the functionality you need.
Currently backed by FFmpeg, with planned support for GStreamer and other backends.
Feature Flags
| Feature | Crate | Default |
|---|---|---|
probe |
ff-probe |
yes |
decode |
ff-decode |
yes |
encode |
ff-encode |
yes |
filter |
ff-filter |
no |
pipeline |
ff-pipeline |
no |
stream |
ff-stream |
no |
Planned Usage
[]
# Default features: probe + decode + encode
= "0.5"
# With filter graph and pipeline support
= { = "0.5", = ["filter", "pipeline"] }
# Full feature set
= { = "0.5", = ["filter", "pipeline", "stream"] }
use *;
let info = open?;
println!;
Minimum Supported Rust Version
Rust 1.93.0 or later (edition 2024).
The ff-* Crate Family
| Crate | Description |
|---|---|
ff-sys |
Raw FFmpeg FFI bindings (bindgen) |
ff-common |
Shared pool abstractions |
ff-format |
Shared type system (codecs, frames, ...) |
ff-probe |
Metadata and chapter extraction |
ff-decode |
Video/audio/image decoding |
ff-encode |
Video/audio encoding |
ff-filter |
Filter graph (libavfilter) |
ff-pipeline |
Unified decode-filter-encode pipeline |
ff-stream |
HLS/DASH streaming output |
avio |
Facade crate (this crate) |
License
MIT OR Apache-2.0