]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts
Cleanup player quality change
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / p2p-media-loader / p2p-media-loader-plugin.ts
CommitLineData
134006b0 1import Hlsjs from 'hls.js'
512decf3 2import videojs from 'video.js'
3e254de8
C
3import { Events, Segment } from '@peertube/p2p-media-loader-core'
4import { Engine, initHlsJsPlayer, initVideoJsContribHlsJsPlayer } from '@peertube/p2p-media-loader-hlsjs'
15a7eafb 5import { timeToInt } from '@shared/core-utils'
f5fcd9f7 6import { P2PMediaLoaderPluginOptions, PlayerNetworkInfo } from '../peertube-videojs-typings'
83fcadac 7import { registerConfigPlugin, registerSourceHandler } from './hls-plugin'
2adfc7ea 8
83fcadac
C
9registerConfigPlugin(videojs)
10registerSourceHandler(videojs)
2adfc7ea 11
f5fcd9f7 12const Plugin = videojs.getPlugin('plugin')
2adfc7ea
C
13class P2pMediaLoaderPlugin extends Plugin {
14
3b6f205c
C
15 private readonly CONSTANTS = {
16 INFO_SCHEDULER: 1000 // Don't change this
17 }
09209296 18 private readonly options: P2PMediaLoaderPluginOptions
3b6f205c 19
83fcadac 20 private hlsjs: Hlsjs
3b6f205c
C
21 private p2pEngine: Engine
22 private statsP2PBytes = {
23 pendingDownload: [] as number[],
24 pendingUpload: [] as number[],
25 numPeers: 0,
26 totalDownload: 0,
27 totalUpload: 0
28 }
09209296
C
29 private statsHTTPBytes = {
30 pendingDownload: [] as number[],
31 pendingUpload: [] as number[],
32 totalDownload: 0,
33 totalUpload: 0
34 }
e2f01c47 35 private startTime: number
3b6f205c
C
36
37 private networkInfoInterval: any
38
7e37e111 39 constructor (player: videojs.Player, options?: P2PMediaLoaderPluginOptions) {
f5fcd9f7 40 super(player)
2adfc7ea 41
09209296
C
42 this.options = options
43
f5fcd9f7
C
44 // FIXME: typings https://github.com/Microsoft/TypeScript/issues/14080
45 if (!(videojs as any).Html5Hlsjs) {
69a01996 46 console.warn('HLS.js does not seem to be supported. Try to fallback to built in HLS.')
96cb4527 47
69a01996
C
48 if (!player.canPlayType('application/vnd.apple.mpegurl')) {
49 const message = 'Cannot fallback to built-in HLS'
50 console.warn(message)
96cb4527 51
69a01996
C
52 player.ready(() => player.trigger('error', new Error(message)))
53 return
54 }
55 } else {
56 // FIXME: typings https://github.com/Microsoft/TypeScript/issues/14080
57 (videojs as any).Html5Hlsjs.addHook('beforeinitialize', (videojsPlayer: any, hlsjs: any) => {
58 this.hlsjs = hlsjs
59 })
3b6f205c 60
69a01996
C
61 initVideoJsContribHlsJsPlayer(player)
62 }
2adfc7ea 63
e2f01c47
C
64 this.startTime = timeToInt(options.startTime)
65
2adfc7ea
C
66 player.src({
67 type: options.type,
68 src: options.src
69 })
09209296 70
69a01996
C
71 player.ready(() => {
72 this.initializeCore()
6ec0b75b 73
69a01996
C
74 if ((videojs as any).Html5Hlsjs) {
75 this.initializePlugin()
76 }
77 })
2adfc7ea
C
78 }
79
3b6f205c 80 dispose () {
6ec0b75b
C
81 if (this.hlsjs) this.hlsjs.destroy()
82 if (this.p2pEngine) this.p2pEngine.destroy()
83
3b6f205c
C
84 clearInterval(this.networkInfoInterval)
85 }
86
4e11d8f3 87 getCurrentLevel () {
3e254de8 88 return this.hlsjs.levels[this.hlsjs.currentLevel]
4e11d8f3
C
89 }
90
91 getLiveLatency () {
3e254de8
C
92 // FIXME: typings
93 return Math.round((this.hlsjs as any).latency)
4e11d8f3
C
94 }
95
6377a9f2
C
96 getHLSJS () {
97 return this.hlsjs
98 }
99
69a01996
C
100 private initializeCore () {
101 this.player.one('play', () => {
102 this.player.addClass('vjs-has-big-play-button-clicked')
103 })
104
105 this.player.one('canplay', () => {
106 if (this.startTime) {
107 this.player.currentTime(this.startTime)
108 }
109 })
110 }
111
112 private initializePlugin () {
09209296
C
113 initHlsJsPlayer(this.hlsjs)
114
f5fcd9f7
C
115 // FIXME: typings
116 const options = this.player.tech(true).options_ as any
117 this.p2pEngine = options.hlsjsConfig.loader.getEngine()
3b6f205c 118
da332417 119 this.p2pEngine.on(Events.SegmentError, (segment: Segment, err) => {
09209296 120 console.error('Segment error.', segment, err)
da332417 121
b82df0a3 122 this.options.redundancyUrlManager.removeBySegmentUrl(segment.requestUrl)
09209296
C
123 })
124
da332417 125 this.statsP2PBytes.numPeers = 1 + this.options.redundancyUrlManager.countBaseUrls()
09209296 126
3b6f205c
C
127 this.runStats()
128 }
129
130 private runStats () {
3e254de8 131 this.p2pEngine.on(Events.PieceBytesDownloaded, (method: string, _segment, bytes: number) => {
09209296
C
132 const elem = method === 'p2p' ? this.statsP2PBytes : this.statsHTTPBytes
133
3e254de8
C
134 elem.pendingDownload.push(bytes)
135 elem.totalDownload += bytes
3b6f205c
C
136 })
137
3e254de8 138 this.p2pEngine.on(Events.PieceBytesUploaded, (method: string, _segment, bytes: number) => {
09209296
C
139 const elem = method === 'p2p' ? this.statsP2PBytes : this.statsHTTPBytes
140
3e254de8
C
141 elem.pendingUpload.push(bytes)
142 elem.totalUpload += bytes
3b6f205c
C
143 })
144
145 this.p2pEngine.on(Events.PeerConnect, () => this.statsP2PBytes.numPeers++)
146 this.p2pEngine.on(Events.PeerClose, () => this.statsP2PBytes.numPeers--)
147
148 this.networkInfoInterval = setInterval(() => {
09209296
C
149 const p2pDownloadSpeed = this.arraySum(this.statsP2PBytes.pendingDownload)
150 const p2pUploadSpeed = this.arraySum(this.statsP2PBytes.pendingUpload)
151
152 const httpDownloadSpeed = this.arraySum(this.statsHTTPBytes.pendingDownload)
153 const httpUploadSpeed = this.arraySum(this.statsHTTPBytes.pendingUpload)
3b6f205c
C
154
155 this.statsP2PBytes.pendingDownload = []
156 this.statsP2PBytes.pendingUpload = []
09209296
C
157 this.statsHTTPBytes.pendingDownload = []
158 this.statsHTTPBytes.pendingUpload = []
3b6f205c
C
159
160 return this.player.trigger('p2pInfo', {
17152837 161 source: 'p2p-media-loader',
09209296
C
162 http: {
163 downloadSpeed: httpDownloadSpeed,
164 uploadSpeed: httpUploadSpeed,
165 downloaded: this.statsHTTPBytes.totalDownload,
166 uploaded: this.statsHTTPBytes.totalUpload
167 },
3b6f205c 168 p2p: {
09209296
C
169 downloadSpeed: p2pDownloadSpeed,
170 uploadSpeed: p2pUploadSpeed,
3b6f205c
C
171 numPeers: this.statsP2PBytes.numPeers,
172 downloaded: this.statsP2PBytes.totalDownload,
173 uploaded: this.statsP2PBytes.totalUpload
4e11d8f3
C
174 },
175 bandwidthEstimate: (this.hlsjs as any).bandwidthEstimate / 8
3b6f205c
C
176 } as PlayerNetworkInfo)
177 }, this.CONSTANTS.INFO_SCHEDULER)
178 }
09209296
C
179
180 private arraySum (data: number[]) {
181 return data.reduce((a: number, b: number) => a + b, 0)
182 }
2adfc7ea
C
183}
184
185videojs.registerPlugin('p2pMediaLoader', P2pMediaLoaderPlugin)
186export { P2pMediaLoaderPlugin }