我无法创建视频缩略图

我有一个iframe在我的website.I要创建的视频我有一个缩略图urliframe存储在database.I要创建这个我试过代码视频的缩略图。

<img src="http://img.youtube.com/vi/_uQrJ0TkZlc/hqdefault.jpg" alt="" style="height:61px">

它运行良好,但问题是我使用的(_uQrJ0TkZlc)id 是静态的。我希望该 id 应该是动态的,它存在于我的数据库表中

这是我的 iframe

<iframe  style="width:10px;height:10px;" id="<?php echo $fetchorderdetails['id']?>" src="<?php echo $fetchorderdetails['video_links']?>rel=0&wmode=Opaque&enablejsapi=1;showinfo=0;" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>


红颜莎娜
浏览 130回答 2
2回答

蝴蝶不菲

而不是存储整个链接到嵌入视频,只存储 ID。这样,您既可以访问嵌入的视频,也可以访问缩略图链接。要将变量插入到字符串中,请使用"<img src="http://img.youtube.com/vi/" . $id . "/hqdefault.jpg" alt="" style="height:61px">".&nbsp;见https://www.php.net/manual/en/language.operators.string.php

哔哔one

您应该使用视频网址的“嵌入”版本,其中包含嵌入字词<iframe&nbsp;width="200"&nbsp;height="150"&nbsp;src="https://www.youtube.com/embed/iqlp5g8-W3I"&nbsp;frameborder="0"&nbsp;allowfullscreen></iframe>非嵌入式网址在 iframe 中不起作用
打开App,查看更多内容
随时随地看视频慕课网APP