6

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.

wafL
  • 577
  • 4
  • 14
HDD
  • 260
  • 6
  • 15

1 Answers1

2

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).

Mayur Agarwal
  • 1,448
  • 1
  • 14
  • 30