RtcRoomContext

解释: swan.createRtcRoomContext 的返回值。

示例

在开发者工具中打开

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

RtcRoomContext - 图2

代码示例

  • SWAN
  • JS
  1. <view class="wrap">
  2. <rtc-room
  3. id="myRoom"
  4. bindstatechange="handleStateChange">
  5. <rtc-room-item
  6. type="local"
  7. userId="{{localUserId}}">
  8. </rtc-room-item>
  9. <view>
  10. <rtc-room-item
  11. type="remote"
  12. userId="{{remoteUserId}}"
  13. class="remote-view">
  14. </rtc-room-item>
  15. </view>
  16. </rtc-room>
  17. <button bindtap="exitRoom">挂断</button>
  18. <button bindtap="getRemoteUserList">获取房间中所有远端用户列表</button>
  19. <view s-if="remoteUserList">用户列表:{{remoteUserList}}</view>
  20. <button bindtap="getRemoteAudioLevels">获取房间中所有远端用户音量级别</button>
  21. <button bindtap="unpublishLocalStream">取消发布本地音视频流</button>
  22. <button bindtap="subscribeRemoteStream">订阅远端音视频流</button>
  23. <button bindtap="unsubscribeRemoteStream">取消订阅远端音视频流</button>
  24. <button bindtap="setRemoteVideoPlayState">暂停/恢复远端画面</button>
  25. <button bindtap="setRemoteAudioPlayState">静音/恢复远端声音</button>
  26. <button bindtap="switchCamera">切换前后置摄像头</button>
  27. </view>