Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Video Editor in Flutter using dart [closed]

I am looking for a plugin or example of a video editor in flutter using dart.

I have tried the following plugin https://pub.dartlang.org/packages/video_player, but it doesn't seems to have properties that I can edit the video. Example trim or add a watermark on the video.

Many Thanks

like image 267
user2878592 Avatar asked Jan 03 '19 08:01

user2878592


People also ask

How do you autoplay videos on flutter?

Based on this post's answer, you can use the WidgetsBinding. instance. addPostFrameCallback to autoplay your video.


1 Answers

You can use this Flutter package called video_trimmer. This package is developed by me, it helps in trimming videos in most of the commonly used formats. You can also generate GIFs from the videos.

This also provides a nice UI for trimming videos.

The package is currently in beta stage. So, feel free to make a PR on the GitHub repo of this package, if you have any suggestions for improvement.

Currently, it doesn't have the feature to add a watermark to any video.

like image 193
Souvik Biswas Avatar answered Sep 30 '22 21:09

Souvik Biswas