CCExtractor / rusty_ffmpeg

FFI bindings for FFmpeg inner libraries.
https://crates.io/crates/rusty_ffmpeg
MIT License
164 stars 26 forks source link

Support Multiple ffmpeg versions #96

Closed prateekmedia closed 1 year ago

prateekmedia commented 1 year ago

See Ubuntu 22.04 and before still have ffmpeg 4, but newer ubuntu have ffmpeg 5. Both of them are supported by ccextractor but if user needs to use ffmpeg5 then they have to add ffmpeg5 feature, but I think It would be better if we can support both ffmpeg4 and ffmpeg5 so it would work for both.

ldm0 commented 1 year ago

ffmpeg5 feature is for FFmpeg5-only features currently. You can remove the ffmpeg5 feature to support both FFmpeg 4 and 5.

prateekmedia commented 1 year ago

Ok then