写一段完美的谷歌浏览器播放rtmp直播流的代码
时间: 2023-03-06 07:32:13 浏览: 135
答:
var player = new jwplayer('player-container').setup({
file: 'rtmp://live.example.com/live/stream',
autostart: true,
width: '100%',
height: '100%',
primary: 'html5'
});
相关问题
写一段谷歌浏览器播放rtmp直播流的代码
答:这是一段使用谷歌浏览器播放rtmp直播流的代码: <video width="640" height="360" controls>
<source src="rtmp://YOUR_STREAM_URL" type="rtmp/flv">
</video>
阅读全文