docs.rs failed to build avio-0.5.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.3
avio
avio is the unified facade for the ff-* crate family. Depend on a single crate and opt in to only the capabilities you need via feature flags. Currently a placeholder — the facade re-exports are under development.
Feature Flags
| Feature | Enables |
|---|---|
probe |
ff-probe — read-only media metadata |
decode |
ff-decode — video and audio decoding |
encode |
ff-encode — video and audio encoding |
filter |
ff-filter — filter graph operations |
pipeline |
ff-pipeline — decode → filter → encode |
stream |
ff-stream — HLS / DASH streaming output |
Planned Usage
[]
= { = "0.3", = ["probe", "decode", "encode"] }
// With the "probe" and "decode" features enabled:
use probe;
use VideoDecoder;
use PixelFormat;
let info = open?;
println!;
let mut decoder = open?
.output_format
.build?;
while let Some = decoder.decode_frame?
Crate Family
| Crate | Purpose |
|---|---|
ff-sys |
Raw bindgen FFI — internal use only |
ff-common |
Shared buffer-pooling abstractions |
ff-format |
Pure-Rust type definitions (no FFmpeg linkage) |
ff-probe |
Read-only media metadata extraction |
ff-decode |
Video and audio decoding |
ff-encode |
Video and audio encoding |
ff-filter |
Filter graph operations |
ff-pipeline |
Decode → filter → encode pipeline |
ff-stream |
HLS / DASH adaptive streaming output |
avio |
Unified facade (this crate) |
MSRV
Rust 1.93.0 (edition 2024).
License
MIT OR Apache-2.0