From: Chocobozzz Date: Wed, 8 Apr 2020 07:12:52 +0000 (+0200) Subject: Use hls.js light X-Git-Tag: v2.2.0-rc.1~269 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fd69c52f8477c44ce506f5a44bc5ee394cad0ef0;p=oweals%2Fpeertube.git Use hls.js light Because we don't need subtitling and alternate-audio features --- diff --git a/client/src/assets/player/p2p-media-loader/hls-plugin.ts b/client/src/assets/player/p2p-media-loader/hls-plugin.ts index 5bfa39cfa..876ed7d9c 100644 --- a/client/src/assets/player/p2p-media-loader/hls-plugin.ts +++ b/client/src/assets/player/p2p-media-loader/hls-plugin.ts @@ -1,7 +1,7 @@ // Thanks https://github.com/streamroot/videojs-hlsjs-plugin // We duplicated this plugin to choose the hls.js version we want, because streamroot only provide a bundled file -import * as Hlsjs from 'hls.js' +import * as Hlsjs from 'hls.js/dist/hls.light.js' import videojs, { VideoJsPlayer } from 'video.js' import { HlsjsConfigHandlerOptions, QualityLevelRepresentation, QualityLevels, VideoJSTechHLS } from '../peertube-videojs-typings' 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 e86900faa..ca205d899 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 @@ -4,7 +4,7 @@ import { Engine, initHlsJsPlayer, initVideoJsContribHlsJsPlayer } from 'p2p-medi import { Events, Segment } from 'p2p-media-loader-core' import { timeToInt } from '../utils' import { registerConfigPlugin, registerSourceHandler } from './hls-plugin' -import * as Hlsjs from 'hls.js' +import * as Hlsjs from 'hls.js/dist/hls.light.js' registerConfigPlugin(videojs) registerSourceHandler(videojs)