flutter_export_video_frame icon indicating copy to clipboard operation
flutter_export_video_frame copied to clipboard

In Android export number of image take to much time to export

Open VishalDobariya12 opened this issue 2 years ago • 2 comments

I am using below function to export number of images.

ExportVideoFrame.exportImage(videoFile.path, 50, 0.5).then((_images) {
        _images.forEach((element) {
          if (element.path.isNotEmpty) {
            coverImages.add(element.path);
            isLoading = false;
            if (mounted) setState(() {});
          }
        });
      });

This above function is working fine in iOS, In iOS it export image in less than 5 to 10 seconds but In Android this same will take 1 minute or more.

Can anyone help in this?

VishalDobariya12 avatar Feb 23 '23 10:02 VishalDobariya12

Did you found any workaround for this delay?

jaykshirsagar05 avatar Apr 18 '23 04:04 jaykshirsagar05

same here, wish to fix soon for Android

acewd1 avatar Apr 19 '23 03:04 acewd1