亲爱的朋友,我无法找到" Red5 Pro HTML"精确的例子如何停止发布者的流,如果有人知道写方式给我一个提示
答案 0 :(得分:2)
查看SDK documentation,RTCPublisher
和RTMPPublisher
都有一个名为unpublish
的函数:
取消发布()→{承诺}
请求停止广播。返回的Promise将在成功停止广播时解决或拒绝。
返回:
Promise
尝试使用它。
publisher.unpublish()
.then(() => console.log('Stopped publisher stream!'))
.catch(() => console.log('Failed to stop publisher stream!'))