【发布时间】:2013-08-14 23:36:17
【问题描述】:
我可以使用 HTML 5 <video> 控件在我的网站上播放 YouTube 视频吗?
我可以播放 MP4、ogg 格式的视频,
<video width="710" height="423" controls>
<source src="testvideo.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
但是如何在来源来自 youtube 的地方运行视频 例如:
<video width="710" height="423" controls>
<source src="https://www.youtube.com/v/<youtube video id>?enablejsapi=1&rel=0&fs=1" type="????"></source>
Your browser does not support the video tag.
</video>
我提供了有效的来源和给定的类型为video/youtube,但得到的错误为No video with supported format and MIME type found
如果你有任何意见,请告诉我
谢谢,沙拉特
【问题讨论】:
标签: html youtube html5-video