gpt4 book ai didi

android - MissingPluginException(未找到 channel video_thumbnail 上的方法文件的实现)

转载 作者:行者123 更新时间:2023-12-04 23:39:58 35 4
gpt4 key购买 nike

我正在使用 video_thumbnail 0.2.4 包以获取缩略图形式的视频 url。如果我从 android 设备上传视频,那么它的工作完美但如果我使用 iPhone 设备,总是得到错误

MissingPluginException(No implementation found for method file on channel video_thumbnail)


我正在使用 Firestore作为后端并使用 Firebase Storage用于存储我的视频/照片。下面是我的代码。网址正确,视频在浏览器中播放。
Future<String> 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;
}
}
请帮我处理这个案子。

最佳答案

我一直在使用 video_thumbnail 0.4.3 ( Video Thumbnail ) 我发现由于某些视频格式,这种错误是由 SDK 产生的。
到目前为止还没有解决方案,但是您可以通过 try:catch 来控制它。功能。
我也用这个 link of issue i've created 在 GitHub 存储库上创建了问题。 .

关于android - MissingPluginException(未找到 channel video_thumbnail 上的方法文件的实现),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64985303/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com