从技术上讲“是”
(但不是真的)
HTML 5的
<video>标签与协议无关-不在乎。您将协议
src作为URL的一部分放在属性中。例如:
<video src="rtp://myserver.com/path/to/stream"> Your browser does not support the VIDEO tag and/or RTP streams.</video>
或许
<video src="http://myserver.com:1935/path/to/stream/myPlaylist.m3u8"> Your browser does not support the VIDEO tag and/or RTP streams.</video>
也就是说,
<video>标记的实现是特定于 浏览器的。由于HTML5尚处于初期阶段,我希望经常更改支持(或缺乏支持)。
根据W3C的HTML5规范(视频元素):
用户代理可以支持任何视频和音频编解码器以及容器格式



