如何停止" Red5 Pro HTML"?

时间:2018-01-12 16:04:02

标签: javascript web stream red5pro

亲爱的朋友,我无法找到" Red5 Pro HTML"精确的例子如何停止发布者的流,如果有人知道写方式给我一个提示

1 个答案:

答案 0 :(得分:2)

查看SDK documentationRTCPublisherRTMPPublisher都有一个名为unpublish的函数:

  

取消发布()→{承诺}

     

请求停止广播。返回的Promise将在成功停止广播时解决或拒绝。

     

返回:Promise

尝试使用它。

publisher.unpublish()
  .then(() => console.log('Stopped publisher stream!'))
  .catch(() => console.log('Failed to stop publisher stream!'))