From 96ad40e9e1e46dd9da75b8ee481f560d7c1f9aab Mon Sep 17 00:00:00 2001 From: gemstone Date: Mon, 17 Jun 2024 22:53:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20(xgplayer-hls=EF=BC=89?= =?UTF-8?q?=E4=BF=AE=E5=A4=8Dhls=E6=9C=80=E5=90=8E=E4=B8=80=E5=B8=A7?= =?UTF-8?q?=E4=B8=8D=E6=B8=B2=E6=9F=93=EF=BC=8C=E5=B9=B6=E4=B8=94=E6=92=AD?= =?UTF-8?q?=E6=94=BE=E5=88=B0=E6=9C=80=E5=90=8E=E4=B8=80=E7=9B=B4loading?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/xgplayer-hls/src/hls/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/xgplayer-hls/src/hls/index.js b/packages/xgplayer-hls/src/hls/index.js index 3362e6e0..ca58ded2 100644 --- a/packages/xgplayer-hls/src/hls/index.js +++ b/packages/xgplayer-hls/src/hls/index.js @@ -470,8 +470,10 @@ export class Hls extends EventEmitter { */ _loadSegment = async () => { if (this._segmentProcessing || !this.media) return - const { nextSegment } = this._playlist + const { nextSegment, lastSegment } = this._playlist const { config } = this + // Constrain in the range of 0.016 ~ 0.1, 0.016 is the duration of 1 frame at 60fps + const maxBufferThroughout = Math.min(Math.max(lastSegment?.duration || 0, 0.016), 0.1) if (!nextSegment) return @@ -480,7 +482,7 @@ export class Hls extends EventEmitter { if (this.media.paused && !this.media.currentTime) { bInfo = this.bufferInfo(bInfo.nextStart || 0.5) } - const bufferThroughout = Math.abs(bInfo.end - this.media.duration) < 0.1 + const bufferThroughout = Math.abs(bInfo.end - this.media.duration) < maxBufferThroughout if (bInfo.remaining >= config.preloadTime || bufferThroughout) { this._tryEos() return