Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Applying filters on a video in flutter

Tags:

flutter

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.

like image 247
HDD Avatar asked Nov 07 '22 16:11

HDD


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

like image 162
Mayur Agarwal Avatar answered Dec 01 '22 14:12

Mayur Agarwal