PeerTube/client/src/assets/player/shared/p2p-media-loader/p2p-media-loader-plugin.ts

200 lines
5.9 KiB
TypeScript
Raw Normal View History

2021-08-06 16:41:08 +02:00
import Hlsjs from 'hls.js'
2020-04-21 11:02:28 +02:00
import videojs from 'video.js'
2021-08-03 11:51:49 +02:00
import { Events, Segment } from '@peertube/p2p-media-loader-core'
import { Engine, initHlsJsPlayer, initVideoJsContribHlsJsPlayer } from '@peertube/p2p-media-loader-hlsjs'
import { logger } from '@root-helpers/logger'
2023-06-29 15:55:00 +02:00
import { addQueryParams } from '@shared/core-utils'
2022-03-14 14:28:20 +01:00
import { P2PMediaLoaderPluginOptions, PlayerNetworkInfo } from '../../types'
2023-06-29 15:55:00 +02:00
import { SettingsButton } from '../settings/settings-menu-button'
2020-01-28 17:29:50 +01:00
const Plugin = videojs.getPlugin('plugin')
class P2pMediaLoaderPlugin extends Plugin {
2019-01-29 08:37:25 +01:00
private readonly options: P2PMediaLoaderPluginOptions
2019-01-24 10:16:30 +01:00
private hlsjs: Hlsjs
2019-01-24 10:16:30 +01:00
private p2pEngine: Engine
private statsP2PBytes = {
pendingDownload: [] as number[],
pendingUpload: [] as number[],
numPeers: 0,
totalDownload: 0,
totalUpload: 0
}
2019-01-29 08:37:25 +01:00
private statsHTTPBytes = {
pendingDownload: [] as number[],
totalDownload: 0
2019-01-29 08:37:25 +01:00
}
2019-01-24 10:16:30 +01:00
private networkInfoInterval: any
2020-04-17 11:20:12 +02:00
constructor (player: videojs.Player, options?: P2PMediaLoaderPluginOptions) {
2020-01-28 17:29:50 +01:00
super(player)
2019-01-29 08:37:25 +01:00
this.options = options
2020-01-28 17:29:50 +01:00
// FIXME: typings https://github.com/Microsoft/TypeScript/issues/14080
if (!(videojs as any).Html5Hlsjs) {
if (player.canPlayType('application/vnd.apple.mpegurl')) {
this.fallbackToBuiltInIOS()
return
}
const message = 'HLS.js does not seem to be supported. Cannot fallback to built-in HLS'
logger.warn(message)
2019-02-20 11:26:14 +01:00
const error: MediaError = {
code: MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED,
message,
MEDIA_ERR_ABORTED: MediaError.MEDIA_ERR_ABORTED,
MEDIA_ERR_DECODE: MediaError.MEDIA_ERR_DECODE,
MEDIA_ERR_NETWORK: MediaError.MEDIA_ERR_NETWORK,
MEDIA_ERR_SRC_NOT_SUPPORTED: MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED
2020-07-20 10:13:56 +02:00
}
player.ready(() => player.error(error))
return
2020-07-20 10:13:56 +02:00
}
// FIXME: typings https://github.com/Microsoft/TypeScript/issues/14080
(videojs as any).Html5Hlsjs.addHook('beforeinitialize', (_videojsPlayer: any, hlsjs: any) => {
this.hlsjs = hlsjs
})
initVideoJsContribHlsJsPlayer(player)
2019-03-13 14:18:58 +01:00
player.src({
type: options.type,
src: options.src
})
2019-01-29 08:37:25 +01:00
2020-07-20 10:13:56 +02:00
player.ready(() => {
this.initializePlugin()
2020-07-20 10:13:56 +02:00
})
}
2019-01-24 10:16:30 +01:00
dispose () {
2023-06-29 15:55:00 +02:00
this.p2pEngine?.removeAllListeners()
this.p2pEngine?.destroy()
this.hlsjs?.destroy()
this.options.segmentValidator?.destroy();
(videojs as any).Html5Hlsjs?.removeAllHooks()
2019-02-06 10:39:50 +01:00
2019-01-24 10:16:30 +01:00
clearInterval(this.networkInfoInterval)
2023-06-29 15:55:00 +02:00
super.dispose()
2019-01-24 10:16:30 +01:00
}
2021-04-27 15:50:29 +02:00
getCurrentLevel () {
2022-09-08 11:10:01 +02:00
if (!this.hlsjs) return undefined
2021-08-03 11:51:49 +02:00
return this.hlsjs.levels[this.hlsjs.currentLevel]
2021-04-27 15:50:29 +02:00
}
getLiveLatency () {
2021-10-22 16:18:00 +02:00
return Math.round(this.hlsjs.latency)
2021-04-27 15:50:29 +02:00
}
2019-12-17 14:20:43 +01:00
getHLSJS () {
return this.hlsjs
}
2020-07-20 10:13:56 +02:00
private initializePlugin () {
2019-01-29 08:37:25 +01:00
initHlsJsPlayer(this.hlsjs)
this.p2pEngine = this.options.loader.getEngine()
2019-01-24 10:16:30 +01:00
2019-08-23 10:19:44 +02:00
this.p2pEngine.on(Events.SegmentError, (segment: Segment, err) => {
if (navigator.onLine === false) return
logger.error(`Segment ${segment.id} error.`, err)
2019-08-23 10:19:44 +02:00
this.options.redundancyUrlManager.removeBySegmentUrl(segment.requestUrl)
2019-01-29 08:37:25 +01:00
})
2019-08-23 10:19:44 +02:00
this.statsP2PBytes.numPeers = 1 + this.options.redundancyUrlManager.countBaseUrls()
2019-01-29 08:37:25 +01:00
2019-01-24 10:16:30 +01:00
this.runStats()
2023-06-29 15:55:00 +02:00
this.hlsjs.on(Hlsjs.Events.LEVEL_SWITCHED, () => this.player.trigger('engine-resolution-change'))
2019-01-24 10:16:30 +01:00
}
private runStats () {
2021-08-03 11:51:49 +02:00
this.p2pEngine.on(Events.PieceBytesDownloaded, (method: string, _segment, bytes: number) => {
2019-01-29 08:37:25 +01:00
const elem = method === 'p2p' ? this.statsP2PBytes : this.statsHTTPBytes
2021-08-03 11:51:49 +02:00
elem.pendingDownload.push(bytes)
elem.totalDownload += bytes
2019-01-24 10:16:30 +01:00
})
2021-08-03 11:51:49 +02:00
this.p2pEngine.on(Events.PieceBytesUploaded, (method: string, _segment, bytes: number) => {
if (method !== 'p2p') {
logger.error(`Received upload from unknown method ${method}`)
return
}
2019-01-29 08:37:25 +01:00
this.statsP2PBytes.pendingUpload.push(bytes)
this.statsP2PBytes.totalUpload += bytes
2019-01-24 10:16:30 +01:00
})
this.p2pEngine.on(Events.PeerConnect, () => this.statsP2PBytes.numPeers++)
this.p2pEngine.on(Events.PeerClose, () => this.statsP2PBytes.numPeers--)
this.networkInfoInterval = setInterval(() => {
2019-01-29 08:37:25 +01:00
const p2pDownloadSpeed = this.arraySum(this.statsP2PBytes.pendingDownload)
const p2pUploadSpeed = this.arraySum(this.statsP2PBytes.pendingUpload)
const httpDownloadSpeed = this.arraySum(this.statsHTTPBytes.pendingDownload)
2019-01-24 10:16:30 +01:00
this.statsP2PBytes.pendingDownload = []
this.statsP2PBytes.pendingUpload = []
2019-01-29 08:37:25 +01:00
this.statsHTTPBytes.pendingDownload = []
2019-01-24 10:16:30 +01:00
2023-06-29 15:55:00 +02:00
return this.player.trigger('p2p-info', {
source: 'p2p-media-loader',
2019-01-29 08:37:25 +01:00
http: {
downloadSpeed: httpDownloadSpeed,
downloaded: this.statsHTTPBytes.totalDownload
2019-01-29 08:37:25 +01:00
},
2019-01-24 10:16:30 +01:00
p2p: {
2019-01-29 08:37:25 +01:00
downloadSpeed: p2pDownloadSpeed,
uploadSpeed: p2pUploadSpeed,
2019-01-24 10:16:30 +01:00
numPeers: this.statsP2PBytes.numPeers,
downloaded: this.statsP2PBytes.totalDownload,
uploaded: this.statsP2PBytes.totalUpload
2021-04-27 15:50:29 +02:00
},
bandwidthEstimate: (this.hlsjs as any).bandwidthEstimate / 8
2019-01-24 10:16:30 +01:00
} as PlayerNetworkInfo)
2023-06-29 15:55:00 +02:00
}, 1000)
2019-01-24 10:16:30 +01:00
}
2019-01-29 08:37:25 +01:00
private arraySum (data: number[]) {
return data.reduce((a: number, b: number) => a + b, 0)
}
private fallbackToBuiltInIOS () {
2023-06-29 15:55:00 +02:00
logger.info('HLS.js does not seem to be supported. Fallback to built-in HLS.')
this.player.src({
type: this.options.type,
src: addQueryParams(this.options.src, {
videoFileToken: this.options.videoFileToken(),
reinjectVideoFileToken: 'true'
})
})
2023-06-29 15:55:00 +02:00
// Resolution button is not supported in built-in HLS player
this.getResolutionButton().hide()
}
private getResolutionButton () {
const settingsButton = this.player.controlBar.getDescendant([ 'settingsButton' ]) as SettingsButton
return settingsButton.menu.getChild('resolutionMenuButton')
}
}
videojs.registerPlugin('p2pMediaLoader', P2pMediaLoaderPlugin)
export { P2pMediaLoaderPlugin }