gpt4 book ai didi

Flutter : Get thumbnail of Youtube video

转载 作者:行者123 更新时间:2023-12-03 02:50:20 27 4
gpt4 key购买 nike

我正在使用 youtube_player_flutter 在我的应用中播放 youtube 视频。有什么方法可以在 flutter 中获取 youtube 视频的缩略图。我有一个 youtube 视频网址,我需要获取该网址的缩略图。

提前致谢。

最佳答案

假设您有上传视频的 youtube URL。如果你有它,那么你必须像下面的 URL 一样格式化它。

https://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg  --  Just add your youtube video Id here
代码片段:
Image.network('https://img.youtube.com/vi/6cwnBBAVIwE/0.jpg'),
6cwnBBAVIwE- 这是我在此处添加的示例 ID。您可以添加您的 YouTube 视频 ID。
您可以从视频 url 中获取 youtube id,id 是 youtube id 的最后 11 位数字
例如这里的视频网址是 https://www.youtube.com/watch?v=H4p6njjPV_o
该视频的 id 是 H4p6njjPV_o
获取 id :
网址 = https://www.youtube.com/watch?v=H4p6njjPV_o
String id = url.substring(url.length -11);

关于Flutter : Get thumbnail of Youtube video,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61743525/

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