Cargo Features
[dependencies]
ffmpeg-di = { version = "1.0.1", default-features = false, features = ["codec", "device", "filter", "format", "resampling", "postprocessing", "software-resampling", "software-scaling", "image"] }
- default = codec, device, filter, format, software-resampling, software-scaling
-
These default features are set whenever
ffmpeg-di
is added without
somewhere in the dependency tree.default-features = false - codec default format software-scaling
-
components
Enables avcodec of ffmpeg-sys-next ^6.0.1
- device default = format
-
Enables avdevice of ffmpeg-sys-next ^6.0.1
- filter default
-
Enables avfilter of ffmpeg-sys-next ^6.0.1
- format default device = codec
-
Enables avformat of ffmpeg-sys-next ^6.0.1
- resampling
-
Enables avresample of ffmpeg-sys-next ^6.0.1
- postprocessing
-
Enables postproc of ffmpeg-sys-next ^6.0.1
- software-resampling default
-
Enables swresample of ffmpeg-sys-next ^6.0.1
- software-scaling default = codec
-
Enables swscale of ffmpeg-sys-next ^6.0.1
Features from optional dependencies
- image implicit feature
-
Enables image ^0.24.6
image:
Imaging library. Provides basic image processing and encoders/decoders for common image formats.