ac-ffmpeg

Crates.ioac-ffmpeg
lib.rsac-ffmpeg
version0.19.0
created_at2020-08-11 16:09:30.341092+00
updated_at2025-05-16 12:12:34.81527+00
descriptionSimple and safe Rust interface for FFmpeg libraries.
homepage
repositoryhttps://github.com/angelcam/rust-ac-ffmpeg
max_upload_size
id275396
size303,879
Core (github:angelcam:core)

documentation

https://docs.rs/ac-ffmpeg/

README

Rust wrapper for FFmpeg libraries

Crates.io MIT licensed Build status

This library provides a Rust interface for FFmpeg libraries. Rather than supporting all FFmpeg features, we focus on safety and simplicity of the interface.

Supported features

  • Demuxing any self-contained media container
  • Muxing any self-contained media container
  • Setting metadata
  • Seeking
  • Decoding audio and video
  • Encoding audio and video
  • Video frame scaling and pixel format transformations
  • Audio resampling
  • Bitstream filters
  • Simple Video filtergraphs

Requirements

  • FFmpeg v4.x, v5.x, v6.x or v7.x libraries. The following libraries are required:
    • libavutil
    • libavcodec
    • libavformat
    • libswresample
    • libswscale
  • and the following libraries are optional:
    • libavfilter

Compilation

The following env. variables can be used to set correct paths to FFmpeg header files and libraries:

  • FFMPEG_INCLUDE_DIR - path to the FFmpeg header files
  • FFMPEG_LIB_DIR - path to the FFmpeg libs

If you require building for multiple platforms, you can append _PLATFORM_TARGET_TRIPLET to both of the above to create platform specific env. variables, for example:

  • FFMPEG_INCLUDE_DIR_AARCH64_LINUX_ANDROID = ${jniInclude}/arm64-v8a/
  • FFMPEG_LIB_DIR_AARCH64_LINUX_ANDROID = ${jniLibs}/arm64-v8a/
  • FFMPEG_INCLUDE_DIR_X86_64_LINUX_ANDROID = ${jniInclude}/x86_64/
  • FFMPEG_LIB_DIR_X86_64_LINUX_ANDROID = ${jniLibs}/x86_64/

If you prefer static linking, you can force it using:

  • FFMPEG_STATIC=1

License

Even though this library is distributed under the MIT license, the FFmpeg project has its own license policies that need to be respected. See https://ffmpeg.org/legal.html for more details.

Commit count: 142

cargo fmt