react_hsbc_teller 0.8.9 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/pages/video/video.jsx +9 -0
package/package.json
CHANGED
|
@@ -1540,6 +1540,15 @@ class Video extends Component {
|
|
|
1540
1540
|
// 加入房间成功
|
|
1541
1541
|
this.test_controller.OnJoinRoomSucc = () => {
|
|
1542
1542
|
console.log('加入房间成功')
|
|
1543
|
+
let publish_config = {}
|
|
1544
|
+
publish_config.media_type = 1
|
|
1545
|
+
publish_config.publish_device = 1
|
|
1546
|
+
publish_config.need_volume_analyser = true
|
|
1547
|
+
publish_config.video_profile_type = 3
|
|
1548
|
+
publish_config.publish_video_id = 'publish_video1'
|
|
1549
|
+
publish_config.publish_streamId_id = 'publish_streamId1'
|
|
1550
|
+
publish_config.publish_tag = 'tag1'
|
|
1551
|
+
this.test_controller.Publish(publish_config)
|
|
1543
1552
|
this.roomCallBack(1, '',0)
|
|
1544
1553
|
};
|
|
1545
1554
|
// 加入房间失败
|