html 如何在HTTPS网站上播放HTTP直播视频流?

igsr9ssn  于 2023-01-19  发布在  其他
关注(0)|答案(2)|浏览(291)

我正在尝试在我的HTTPS网站上播放实时视频HTTP视频流。HTTP视频源是.m3u8。它是连接到我的家庭网络的设备。我正在尝试通过https从任何地方访问它。
我试过使用元素,但它不会播放。
谢谢

pgky5nke

pgky5nke1#

试试这个元素(video标签),这个元素是HTML5中的新元素:

<video src="Your address" type="video/WebM" controls="" poster="The cover" controlslist="download ablefullscreen" notautoplay="" preload="">Your bowser is not support the video tag</video>
3vpjnl9f

3vpjnl9f2#

编辑:请记住,iframe只兼容HTML 4.01到HTML 5,最新的一个。
试试看:

<iframe src="url_here" style="border:5px solid #000;height:350px;width:800px;" title="Iframe livestream"></iframe>

?^^或者,如果不需要边框:

<iframe src="url_here" style="border:none;height:350px;width:800px;" title="Iframe livestream"></iframe>

相关问题