更新时间:2024-11-15 GMT+08:00
分享

SDK使用

  1. 创建容器。

    <body>
        <div id='preview' style='width:1280px; height:720px'>
        </div>
    </body>

  2. 创建客户端,参考createClient

    const client = HWLLSPlayer.createClient()

  3. 填入流地址和容器ID开始播放,参考startPlay

    const streamUrl = 'webrtc://domain/appname/streamname'
    client.startPlay(streamUrl, {
        elementId: 'preview', // 必填,容器id,一般传入div标签的id,这里填入的是步骤1的div容器id
    })

  4. 播放结束,停止播放,参考stopPlay

    client.stopPlay()

  5. 释放资源,参考destroyClient

    client.destroyClient()

    进阶用法,请参考进阶用法

相关文档