lex-xin vor 1 Woche
Ursprung
Commit
9d0c968105

+ 3 - 2
src/views/attend-class/component/audio-pay.tsx

@@ -432,7 +432,7 @@ export default defineComponent({
         audioForms.paused = audio.value?.paused;
       } else if (val.type === 'offline') {
         audioForms.isOnline = false;
-
+        console.log('offline');
         // 去掉检测加载缓存
         audioForms.isBuffering = false;
         audioForms.bufferTimeout && clearTimeout(audioForms.bufferTimeout);
@@ -516,7 +516,8 @@ export default defineComponent({
               audioForms.bufferTimeout &&
                 clearTimeout(audioForms.bufferTimeout);
 
-              // 设置缓冲超时检测(5秒)
+              // 设置缓冲超时检测(15秒)
+              if (!audioForms.isOnline) return;
               audioForms.bufferTimeout = setTimeout(() => {
                 if (audioForms.isBuffering) {
                   console.log('缓冲超时,暂停播放');

+ 2 - 1
src/views/attend-class/component/video-play.tsx

@@ -205,7 +205,8 @@ export default defineComponent({
 
           videoFroms.bufferTimeout && clearTimeout(videoFroms.bufferTimeout);
 
-          // 设置缓冲超时检测(5秒)
+          // 设置缓冲超时检测(15秒)
+          if (!videoFroms.isOnline) return;
           videoFroms.bufferTimeout = setTimeout(() => {
             if (videoFroms.isBuffering) {
               console.log('缓冲超时,暂停播放');