3

As I would like to be able to manipulate the z-index of an embedded Youtube playlist, I tried adding the html5 parameter, set to 1, but this seems to work for single video embedding only.

This works:

<iframe width="300" height="225" src="http://www.youtube.com/embed/VIDEO_ID?html5=1" frameborder="0">

But this doesn't:

<iframe width="300" height="225" src="http://www.youtube.com/embed/videoseries?list=PLAYLIST_ID&amp;html5=1" frameborder="0">

Many thanks :)

4

1 回答 1

1

您正在以正确的方式强制使用 html 5 播放器,youtube 目前不支持此功能,这仅适用于单个视频。

还有其他解决方案可以让 html5 播放器在 html5 中播放多个 youtube 视频。

使用 mediaelement.js,您可以自己构建一些东西(检查哪个 vid 正在播放,下一个是哪个,如果视频完成了,等等......)。http://mediaelementjs.com/

在快速谷歌之后,我找到了一个实际上支持播放列表的 HTML5 播放器:http: //mediafront.org/osmplayer/#.UK1L3eOe-pY

于 2012-11-21T21:51:24.323 回答