Browse Source

修复倒计时重复问题、更新声网RTC sdk版本4.23.2

warrior 2 weeks ago
parent
commit
c7887e86b8

+ 1 - 1
angular.json

@@ -149,7 +149,7 @@
             "tsConfig": "projects/live-app/tsconfig.app.json",
             "inlineStyleLanguage": "scss",
             "assets": [
-              "projects/live-app/src/assets/js/AgoraRTC_N-4.14.0.js",
+              "projects/live-app/src/assets/js/AgoraRTC_N-4.23.2.js",
               "projects/live-app/src/assets/js/agora-rtm-2.2.0.min.js",
               "projects/live-app/src/assets/js/vap.min.js",
               {

File diff suppressed because it is too large
+ 4 - 0
projects/live-app/src/assets/js/AgoraRTC_N-4.23.2.js


+ 1 - 1
projects/live-app/src/index.html

@@ -7,7 +7,7 @@
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <link rel="icon" type="image/x-icon" href="favicon.ico">
 	<script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
-  <script src="assets/js/AgoraRTC_N-4.14.0.js"></script>
+  <script src="assets/js/AgoraRTC_N-4.23.2.js"></script>
   <script src="assets/js/agora-rtm-2.2.0.min.js"></script>
 </head>
 <body>

+ 5 - 2
projects/live-app/src/services/live.service.ts

@@ -93,6 +93,7 @@ export class LiveService {
     };
     this.timer && clearTimeout(this.timer);
     this.timer_countdown && clearInterval(this.timer_countdown);
+    this.timer_countdown = null
     this.options['token'] = '';
     this.options['channel'] = '';
     this.user_published_list = [];
@@ -464,7 +465,7 @@ export class LiveService {
       if (this.countdown <= 120) {
         this.alertTips('剩余通话时间不足2分钟,请及时充值');
       }
-      this.startCountdown();
+      !this.timer_countdown && this.startCountdown();
     }
   }
 
@@ -593,7 +594,9 @@ export class LiveService {
     );
     console.log(newCamers);
     newCamers &&
-      (await this.localTracks.videoTrack.setDevice(newCamers.deviceId));
+      (await this.localTracks.videoTrack.setDevice({
+        cameraId: newCamers.deviceId,
+      }));
     // .then(() => {
     //   this.tools['camera'] = !this.tools['camera'];
     //   this.currentUsedDevice.videoDevice = newCamers.deviceId;

Some files were not shown because too many files changed in this diff