5 stable releases

Uses old Rust 2015

1.1.1+ffmpeg-6.0 Mar 8, 2023
1.1.0+ffmpeg-6.0.0 Mar 7, 2023
1.0.2+ffmpeg-5.1.2 Feb 10, 2023
1.0.0+ffmpeg-5.1.2 Jan 23, 2023

#330 in Video

Download history 387/week @ 2023-11-20 218/week @ 2023-11-27 149/week @ 2023-12-04 120/week @ 2023-12-11 292/week @ 2023-12-18 631/week @ 2023-12-25 72/week @ 2024-01-01 274/week @ 2024-01-08 1541/week @ 2024-01-15 593/week @ 2024-01-22 861/week @ 2024-01-29 678/week @ 2024-02-05 1139/week @ 2024-02-12 610/week @ 2024-02-19 690/week @ 2024-02-26 321/week @ 2024-03-04

2,794 downloads per month
Used in 9 crates (via ffmpeg-the-third)

WTFPL license

70KB
1.5K SLoC

ffmpeg-sys-the-third on crates.io build

This is a fork of the abandoned ffmpeg-sys crate. You can find this crate as ffmpeg-sys-the-third on crates.io.

This crate contains low level bindings to FFmpeg. You're probably interested in the high level bindings instead: ffmpeg-next.

A word on versioning: major and minor versions track major and minor versions of FFmpeg, e.g. 4.2.x of this crate has been updated to support the 4.2.x series of FFmpeg. Patch level is reserved for bug fixes of this crate and does not track FFmpeg patch versions.

Feature flags

In addition to feature flags declared in Cargo.toml, this crate performs various compile-time version and feature detections and exposes the results in additional flags. These flags are briefly documented below; run cargo build -vv to view more details.

  • ffmpeg_<x>_<y> flags (new in v4.3.2), e.g. ffmpeg_4_4, indicating the FFmpeg installation being compiled against is at least version <x>.<y>. Currently available:

    • ffmpeg_3_0
    • ffmpeg_3_1
    • ffmpeg_3_2
    • ffmpeg_3_3
    • ffmpeg_3_1
    • ffmpeg_4_0
    • ffmpeg_4_1
    • ffmpeg_4_2
    • ffmpeg_4_3
    • ffmpeg_4_4
  • avcodec_version_greater_than_<x>_<y> (new in v4.3.2), e.g., avcodec_version_greater_than_58_90. The name should be self-explanatory.

  • ff_api_<feature>, e.g. ff_api_vaapi, corresponding to whether their respective uppercase deprecation guards evaluate to true.

  • ff_api_<feature>_is_defined, e.g. ff_api_vappi_is_defined, similar to above except these are enabled as long as the corresponding deprecation guards are defined.

Dependencies

~0–2.6MB
~41K SLoC