How external libraries install for ffmpeg_kit_flutter?

Viewed 42
1 Answers

from docs

2.2 Installing Packages

Installing ffmpeg_kit_flutter enables the https package by default. It is possible to install the other packages using the following dependency format.

dependencies:
  ffmpeg_kit_flutter_<package name>: 4.5.1

eg audio

ffmpeg_kit_flutter_audio: 4.5.1-LTS

given that x264 is under package https-gpl , you install it as follows

ffmpeg_kit_flutter_https_gpl: 4.5.1-LTS

also a quick look into publishers page should make it easier to see exact package name .

Related