Applying filters on a video in flutter

Viewed 1763

I was wondering if there is a way to apply filters on a video in flutter. The video can be a screen recording or a filming through the phone's camera.

We already possess the knowledge about image filters, but not for videos.

Any help will be appreciated.

1 Answers

In my knowledge, there are two packages that you can use, tapioca and flutter_ffmpeg

There is and example for tapioca on the link, and for flutter_ffmpeg, you can visit Video filter in ffmpeg to see how video filters are applied in ffmpeg.

NOTE: There is a different way of using ffmpeg command in flutter, so I think you can't directly just copy and paste the commands (given in Video filter in ffmpeg).

Related