Youtube 缩略图并不总是出现
Youtube thumbnail does not appear always
我正在我客户的网站上显示 YouTube 视频列表。所有视频都有缩略图。我使用了以下代码:
<object style="display: block;" width="300" height="250" data="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" type="application/x-shockwave-flash">
<param name="data" value="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" />
<param name="src" value="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" />
</object>
我在页面上显示 5 个视频。奇怪的是,缩略图出现在某些视频上(随机)。
是否有任何属性指定"thumbnail should appear compulsorily"?我试过 showlist=1
并没有解决问题。
根据 youtube 的文档,此嵌入代码已弃用。
Deprecation Notice
YouTube embeds were deprecated on January 27, 2015. Please migrate your applications to use embeds, which can intelligently use whichever embedded player – HTML (<video>
) or Flash (<object>
) – the client supports.
我正在我客户的网站上显示 YouTube 视频列表。所有视频都有缩略图。我使用了以下代码:
<object style="display: block;" width="300" height="250" data="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" type="application/x-shockwave-flash">
<param name="data" value="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" />
<param name="src" value="https://www.youtube.com/v/wK_JI0UxY3g?fs=1&hl=en_US" />
</object>
我在页面上显示 5 个视频。奇怪的是,缩略图出现在某些视频上(随机)。
是否有任何属性指定"thumbnail should appear compulsorily"?我试过 showlist=1
并没有解决问题。
根据 youtube 的文档,此嵌入代码已弃用。
Deprecation Notice YouTube embeds were deprecated on January 27, 2015. Please migrate your applications to use embeds, which can intelligently use whichever embedded player – HTML (
<video>
) or Flash (<object>
) – the client supports.