Код: Выделить всё
MissingPluginException(No implementation found for method file on channel video_thumbnail)
Я использую Firestore в качестве бэкэнда и используя Firebase Storage для хранения моего видео/фотографий. Ниже приведены мой код. URL -адрес верен, а видео играет в браузере. < /P>
Код: Выделить всё
Future thumbnailImageFromVideoUrl(String url, String feedID) async {
try {
String filePath = _strDirectoryPath + "/" + feedID + '.png';
print("filePath -- $filePath");
print("videoURL -- $url");
return await VideoThumbnail.thumbnailFile(
video: url,
thumbnailPath: filePath,
imageFormat: ImageFormat.PNG,
maxHeight: 240,
quality: 50,
);
} catch (e) {
print("Video Thumbnail Error: $e");
return null;
}
}
Подробнее здесь: https://stackoverflow.com/questions/649 ... nnel-video