From: Chocobozzz Date: Tue, 13 Aug 2019 09:08:36 +0000 (+0200) Subject: Fix start time on HLS videos X-Git-Tag: v1.4.0-rc.1~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e028d983727f7826f5aebfe84770c5c37a712b4d;p=oweals%2Fpeertube.git Fix start time on HLS videos --- diff --git a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts index 7a0af6e8a..8fb7ba2ea 100644 --- a/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts @@ -98,25 +98,10 @@ class P2pMediaLoaderPlugin extends Plugin { this.runStats() - this.hlsjs.on('hlsLevelLoaded', () => { - console.log('hello1') + this.player.one('canplay', () => { if (this.startTime) { this.player.currentTime(this.startTime) } - - this.hlsjs.off('hlsLevelLoaded', this) - }) - - this.hlsjs.on('hlsFragParsed', () => { - console.log('hello2') - }) - - this.hlsjs.on('hlsFragBuffered', () => { - console.log('hello 3') - }) - - this.player.one('loadedmetadata', () => { - console.log('hello 4') }) }