custom_video_editor 1.0.2 copy "custom_video_editor: ^1.0.2" to clipboard
custom_video_editor: ^1.0.2 copied to clipboard

PlatformAndroid
outdated

Video editor designed for trimming and cropping videos.

Custom Video Editor #

Video editor designed for trimming and cropping videos.

Features #

  • Crop

  • Trim

Custom video editor in display #


How to use this package #

In order to start editing a video, copy the code below and modify accordingly.

Future<void> editVideo(String videoLink) async {
    final updatedRes = await Navigator.push(context, MaterialPageRoute(builder: (context) {
      return EditVideoComponent(videoLink: videoLink);
    }));
    if(updatedRes != null && updatedRes is FinishedVideoData){
      VideoPlayerController getController = VideoPlayerController.file(File(updatedRes.url));
      await getController.initialize();
      controller = getController;
      width = updatedRes.size.width;
      height = updatedRes.size.height;
    }
}
6
likes
130
points
13
downloads

Publisher

unverified uploader

Weekly Downloads

Video editor designed for trimming and cropping videos.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

cupertino_icons, ffmpeg_kit_flutter, flutter, image_picker, path_provider, uuid, video_player, video_thumbnail

More

Packages that depend on custom_video_editor