1
0
Fork 0

Don't fallback to HLS with private videos

This commit is contained in:
Chocobozzz 2022-10-21 11:27:39 +02:00 committed by Chocobozzz
parent 9ab330b90d
commit 326f36929a
3 changed files with 11 additions and 1 deletions

View File

@ -31,6 +31,8 @@ export class HLSOptionsBuilder {
const loader = new this.p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass() as P2PMediaLoader
const p2pMediaLoader: P2PMediaLoaderPluginOptions = {
requiresAuth: commonOptions.requiresAuth,
redundancyUrlManager,
type: 'application/x-mpegURL',
startTime: commonOptions.startTime,

View File

@ -44,8 +44,14 @@ class P2pMediaLoaderPlugin extends Plugin {
if (!(videojs as any).Html5Hlsjs) {
logger.warn('HLS.js does not seem to be supported. Try to fallback to built in HLS.')
let message: string
if (!player.canPlayType('application/vnd.apple.mpegurl')) {
const message = 'Cannot fallback to built-in HLS'
message = 'Cannot fallback to built-in HLS'
} else if (options.requiresAuth) {
message = 'Video requires auth which is not compatible to build-in HLS player'
}
if (message) {
logger.warn(message)
player.ready(() => player.trigger('error', new Error(message)))

View File

@ -166,6 +166,8 @@ type P2PMediaLoaderPluginOptions = {
startTime: number | string
loader: P2PMediaLoader
requiresAuth: boolean
}
export type P2PMediaLoader = {