### 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?