更新时间:2024-11-15 GMT+08:00
SDK使用
- 创建容器。
<body> <div id='preview' style='width:1280px; height:720px'> </div> </body>
- 创建客户端,参考createClient。
const client = HWLLSPlayer.createClient()
- 填入流地址和容器ID开始播放,参考startPlay。
const streamUrl = 'webrtc://domain/appname/streamname' client.startPlay(streamUrl, { elementId: 'preview', // 必填,容器id,一般传入div标签的id,这里填入的是步骤1的div容器id })
- 播放结束,停止播放,参考stopPlay。
client.stopPlay()
- 释放资源,参考destroyClient。
client.destroyClient()
进阶用法,请参考进阶用法。
父主题: Web SDK