]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/webtorrent/webtorrent-plugin.ts
fix missing title attribute on <iframe> tag suggested for embedding (#3901)
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / webtorrent / webtorrent-plugin.ts
CommitLineData
512decf3 1import videojs from 'video.js'
aa8b6df4 2import * as WebTorrent from 'webtorrent'
09209296 3import { renderVideo } from './video-renderer'
f5fcd9f7 4import { LoadedQualityData, PlayerNetworkInfo, WebtorrentPluginOptions } from '../peertube-videojs-typings'
3e2bc4ea 5import { getRtcConfig, timeToInt, videoFileMaxByResolution, videoFileMinByResolution, isIOS, isSafari } from '../utils'
09209296 6import { PeertubeChunkStore } from './peertube-chunk-store'
6cca7360 7import {
7b3a99d5 8 getAverageBandwidthInStore,
6cca7360 9 getStoredMute,
43c66a91 10 getStoredP2PEnabled,
f5fcd9f7 11 getStoredVolume,
2adfc7ea 12 saveAverageBandwidth
09209296 13} from '../peertube-player-local-storage'
d7a25329 14import { VideoFile } from '@shared/models'
be6a4802 15
c199c427
C
16const CacheChunkStore = require('cache-chunk-store')
17
a73115f3
C
18type PlayOptions = {
19 forcePlay?: boolean,
20 seek?: number,
21 delay?: number
22}
23
f5fcd9f7
C
24const Plugin = videojs.getPlugin('plugin')
25
2adfc7ea 26class WebTorrentPlugin extends Plugin {
abb3097e
C
27 readonly videoFiles: VideoFile[]
28
c6352f2c 29 private readonly playerElement: HTMLVideoElement
a8462c8e 30
c6352f2c 31 private readonly autoplay: boolean = false
f37bad63 32 private readonly startTime: number = 0
7e37e111 33 private readonly savePlayerSrcFunction: videojs.Player['src']
a8462c8e
C
34 private readonly videoDuration: number
35 private readonly CONSTANTS = {
36 INFO_SCHEDULER: 1000, // Don't change this
37 AUTO_QUALITY_SCHEDULER: 3000, // Check quality every 3 seconds
38 AUTO_QUALITY_THRESHOLD_PERCENT: 30, // Bandwidth should be 30% more important than a resolution bitrate to change to it
7ee4a4af
C
39 AUTO_QUALITY_OBSERVATION_TIME: 10000, // Wait 10 seconds after having change the resolution before another check
40 AUTO_QUALITY_HIGHER_RESOLUTION_DELAY: 5000, // Buffering higher resolution during 5 seconds
2adfc7ea 41 BANDWIDTH_AVERAGE_NUMBER_OF_VALUES: 5 // Last 5 seconds to build average bandwidth
a8462c8e
C
42 }
43
b7f1747d
C
44 private readonly webtorrent = new WebTorrent({
45 tracker: {
09209296 46 rtcConfig: getRtcConfig()
b7f1747d
C
47 },
48 dht: false
49 })
50
a22bfc3e 51 private currentVideoFile: VideoFile
c199c427 52 private torrent: WebTorrent.Torrent
287918da 53
244b4ae3
B
54 private renderer: any
55 private fakeRenderer: any
3b019808 56 private destroyingFakeRenderer = false
287918da 57
7ee4a4af 58 private autoResolution = true
2adfc7ea 59 private autoResolutionPossible = true
7ee4a4af 60 private isAutoResolutionObservation = false
64cc5e85 61 private playerRefusedP2P = false
7ee4a4af 62
244b4ae3
B
63 private torrentInfoInterval: any
64 private autoQualityInterval: any
244b4ae3
B
65 private addTorrentDelay: any
66 private qualityObservationTimer: any
67 private runAutoQualitySchedulerTimer: any
a8462c8e
C
68
69 private downloadSpeeds: number[] = []
a22bfc3e 70
8426a711 71 constructor (player: videojs.Player, options?: WebtorrentPluginOptions) {
f5fcd9f7 72 super(player)
a22bfc3e 73
f0a39880
C
74 this.startTime = timeToInt(options.startTime)
75
e7eb5b39 76 // Disable auto play on iOS
9eccae74 77 this.autoplay = options.autoplay
43c66a91 78 this.playerRefusedP2P = !getStoredP2PEnabled()
481d3596 79
a22bfc3e 80 this.videoFiles = options.videoFiles
3bcfff7f 81 this.videoDuration = options.videoDuration
a22bfc3e 82
bf5685f0 83 this.savePlayerSrcFunction = this.player.src
a22bfc3e
C
84 this.playerElement = options.playerElement
85
86 this.player.ready(() => {
3b019808
C
87 const playerOptions = this.player.options_
88
c6352f2c
C
89 const volume = getStoredVolume()
90 if (volume !== undefined) this.player.volume(volume)
3b019808
C
91
92 const muted = playerOptions.muted !== undefined ? playerOptions.muted : getStoredMute()
c6352f2c
C
93 if (muted !== undefined) this.player.muted(muted)
94
fe05c3ac
C
95 this.player.duration(options.videoDuration)
96
0dcf9a14 97 this.initializePlayer()
a22bfc3e 98 this.runTorrentInfoScheduler()
6e46de09 99
a8462c8e 100 this.player.one('play', () => {
f37bad63 101 // Don't run immediately scheduler, wait some seconds the TCP connections are made
b335ccec 102 this.runAutoQualitySchedulerTimer = setTimeout(() => this.runAutoQualityScheduler(), this.CONSTANTS.AUTO_QUALITY_SCHEDULER)
a8462c8e 103 })
a22bfc3e
C
104 })
105 }
106
107 dispose () {
7ee4a4af
C
108 clearTimeout(this.addTorrentDelay)
109 clearTimeout(this.qualityObservationTimer)
110 clearTimeout(this.runAutoQualitySchedulerTimer)
111
3bcfff7f 112 clearInterval(this.torrentInfoInterval)
a8462c8e 113 clearInterval(this.autoQualityInterval)
3bcfff7f 114
a22bfc3e
C
115 // Don't need to destroy renderer, video player will be destroyed
116 this.flushVideoFile(this.currentVideoFile, false)
054a103b
C
117
118 this.destroyFakeRenderer()
aa8b6df4
C
119 }
120
09700934
C
121 getCurrentResolutionId () {
122 return this.currentVideoFile ? this.currentVideoFile.resolution.id : -1
aa8b6df4
C
123 }
124
8426a711 125 updateVideoFile (
a325db17 126 videoFile?: VideoFile,
3baf9be2
C
127 options: {
128 forcePlay?: boolean,
129 seek?: number,
130 delay?: number
131 } = {},
132 done: () => void = () => { /* empty */ }
133 ) {
a325db17 134 // Automatically choose the adapted video file
6a882bc4 135 if (!videoFile) {
a325db17 136 const savedAverageBandwidth = getAverageBandwidthInStore()
137 videoFile = savedAverageBandwidth
138 ? this.getAppropriateFile(savedAverageBandwidth)
139 : this.pickAverageVideoFile()
140 }
141
6a882bc4 142 if (!videoFile) {
a5a69fc7 143 throw Error(`Can't update video file since videoFile is undefined.`)
144 }
145
aa8b6df4 146 // Don't add the same video file once again
a22bfc3e 147 if (this.currentVideoFile !== undefined && this.currentVideoFile.magnetUri === videoFile.magnetUri) {
aa8b6df4
C
148 return
149 }
150
c6352f2c 151 // Do not display error to user because we will have multiple fallback
e46c70d8 152 this.disableErrorDisplay();
1198a08c 153
b335ccec
C
154 // Hack to "simulate" src link in video.js >= 6
155 // Without this, we can't play the video after pausing it
156 // https://github.com/videojs/video.js/blob/master/src/js/player.js#L1633
f5fcd9f7 157 (this.player as any).src = () => true
c6352f2c 158 const oldPlaybackRate = this.player.playbackRate()
bf5685f0 159
a22bfc3e
C
160 const previousVideoFile = this.currentVideoFile
161 this.currentVideoFile = videoFile
aa8b6df4 162
a73115f3
C
163 // Don't try on iOS that does not support MediaSource
164 // Or don't use P2P if webtorrent is disabled
3e2bc4ea 165 if (isIOS() || this.playerRefusedP2P) {
a73115f3
C
166 return this.fallbackToHttp(options, () => {
167 this.player.playbackRate(oldPlaybackRate)
168 return done()
169 })
170 }
171
3baf9be2 172 this.addTorrent(this.currentVideoFile.magnetUri, previousVideoFile, options, () => {
c6352f2c
C
173 this.player.playbackRate(oldPlaybackRate)
174 return done()
175 })
a216c623 176
2adfc7ea 177 this.changeQuality()
3b6f205c 178 this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.currentVideoFile.resolution.id })
a216c623
C
179 }
180
b335ccec
C
181 updateResolution (resolutionId: number, delay = 0) {
182 // Remember player state
183 const currentTime = this.player.currentTime()
184 const isPaused = this.player.paused()
185
b335ccec
C
186 // Hide bigPlayButton
187 if (!isPaused) {
188 this.player.bigPlayButton.hide()
189 }
190
3a149e9f
C
191 // Audio-only (resolutionId === 0) gets special treatment
192 if (resolutionId === 0) {
5c7d6508 193 // Audio-only: show poster, do not auto-hide controls
194 this.player.addClass('vjs-playing-audio-only-content')
195 this.player.posterImage.show()
3a149e9f
C
196 } else {
197 // Hide poster to have black background
198 this.player.removeClass('vjs-playing-audio-only-content')
199 this.player.posterImage.hide()
5c7d6508 200 }
201
b335ccec
C
202 const newVideoFile = this.videoFiles.find(f => f.resolution.id === resolutionId)
203 const options = {
204 forcePlay: false,
205 delay,
206 seek: currentTime + (delay / 1000)
207 }
5c7d6508 208
b335ccec
C
209 this.updateVideoFile(newVideoFile, options)
210 }
211
212 flushVideoFile (videoFile: VideoFile, destroyRenderer = true) {
213 if (videoFile !== undefined && this.webtorrent.get(videoFile.magnetUri)) {
214 if (destroyRenderer === true && this.renderer && this.renderer.destroy) this.renderer.destroy()
215
216 this.webtorrent.remove(videoFile.magnetUri)
217 console.log('Removed ' + videoFile.magnetUri)
218 }
219 }
220
b335ccec
C
221 enableAutoResolution () {
222 this.autoResolution = true
3b6f205c 223 this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() })
b335ccec
C
224 }
225
226 disableAutoResolution (forbid = false) {
2adfc7ea 227 if (forbid === true) this.autoResolutionPossible = false
b335ccec
C
228
229 this.autoResolution = false
3b6f205c
C
230 this.trigger('autoResolutionChange', { possible: this.autoResolutionPossible })
231 this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() })
b335ccec
C
232 }
233
6377a9f2
C
234 isAutoResolutionPossible () {
235 return this.autoResolutionPossible
236 }
237
b335ccec
C
238 getTorrent () {
239 return this.torrent
240 }
241
aedf50d1
C
242 getCurrentVideoFile () {
243 return this.currentVideoFile
244 }
245
b335ccec 246 private addTorrent (
3baf9be2
C
247 magnetOrTorrentUrl: string,
248 previousVideoFile: VideoFile,
a73115f3 249 options: PlayOptions,
3baf9be2
C
250 done: Function
251 ) {
d61893f7
C
252 if (!magnetOrTorrentUrl) return this.fallbackToHttp(options, done)
253
a216c623
C
254 console.log('Adding ' + magnetOrTorrentUrl + '.')
255
a8462c8e 256 const oldTorrent = this.torrent
3baf9be2 257 const torrentOptions = {
85394ba2
C
258 // Don't use arrow function: it breaks webtorrent (that uses `new` keyword)
259 store: function (chunkLength: number, storeOpts: any) {
260 return new CacheChunkStore(new PeertubeChunkStore(chunkLength, storeOpts), {
261 max: 100
262 })
263 }
efda99c3
C
264 }
265
b7f1747d 266 this.torrent = this.webtorrent.add(magnetOrTorrentUrl, torrentOptions, torrent => {
a216c623 267 console.log('Added ' + magnetOrTorrentUrl + '.')
aa8b6df4 268
a8462c8e 269 if (oldTorrent) {
4a7591e1 270 // Pause the old torrent
b335ccec 271 this.stopTorrent(oldTorrent)
6d272f39
C
272
273 // We use a fake renderer so we download correct pieces of the next file
b335ccec 274 if (options.delay) this.renderFileInFakeElement(torrent.files[ 0 ], options.delay)
a8462c8e 275 }
aa8b6df4 276
e7eb5b39 277 // Render the video in a few seconds? (on resolution change for example, we wait some seconds of the new video resolution)
7ee4a4af 278 this.addTorrentDelay = setTimeout(() => {
b335ccec 279 // We don't need the fake renderer anymore
054a103b 280 this.destroyFakeRenderer()
6d272f39 281
3baf9be2
C
282 const paused = this.player.paused()
283
a8462c8e 284 this.flushVideoFile(previousVideoFile)
0dcf9a14 285
fe05c3ac
C
286 // Update progress bar (just for the UI), do not wait rendering
287 if (options.seek) this.player.currentTime(options.seek)
288
3baf9be2 289 const renderVideoOptions = { autoplay: false, controls: true }
b335ccec 290 renderVideo(torrent.files[ 0 ], this.playerElement, renderVideoOptions, (err, renderer) => {
a8462c8e 291 this.renderer = renderer
aa8b6df4 292
a73115f3 293 if (err) return this.fallbackToHttp(options, done)
3bcfff7f 294
c199c427 295 return this.tryToPlay(err => {
3baf9be2 296 if (err) return done(err)
a8462c8e 297
3baf9be2
C
298 if (options.seek) this.seek(options.seek)
299 if (options.forcePlay === false && paused === true) this.player.pause()
8244e187 300
a73115f3 301 return done()
3baf9be2 302 })
a8462c8e 303 })
3baf9be2 304 }, options.delay || 0)
aa8b6df4
C
305 })
306
244b4ae3 307 this.torrent.on('error', (err: any) => console.error(err))
a216c623 308
a22bfc3e 309 this.torrent.on('warning', (err: any) => {
a96aed15 310 // We don't support HTTP tracker but we don't care -> we use the web socket tracker
531ab5b6 311 if (err.message.indexOf('Unsupported tracker protocol') !== -1) return
a216c623 312
7dbdc3ba
C
313 // Users don't care about issues with WebRTC, but developers do so log it in the console
314 if (err.message.indexOf('Ice connection failed') !== -1) {
332e7032 315 console.log(err)
7dbdc3ba
C
316 return
317 }
a96aed15 318
a216c623
C
319 // Magnet hash is not up to date with the torrent file, add directly the torrent file
320 if (err.message.indexOf('incorrect info hash') !== -1) {
321 console.error('Incorrect info hash detected, falling back to torrent file.')
1f6824c9 322 const newOptions = { forcePlay: true, seek: options.seek }
b335ccec 323 return this.addTorrent(this.torrent[ 'xs' ], previousVideoFile, newOptions, done)
a216c623
C
324 }
325
6d88de72 326 // Remote instance is down
0f7fedc3 327 if (err.message.indexOf('from xs param') !== -1) {
6d88de72
C
328 this.handleError(err)
329 }
330
331 console.warn(err)
a96aed15 332 })
aa8b6df4
C
333 }
334
c199c427 335 private tryToPlay (done?: (err?: Error) => void) {
80109b2d 336 if (!done) done = function () { /* empty */ }
1fad099d 337
80109b2d
C
338 const playPromise = this.player.play()
339 if (playPromise !== undefined) {
f5fcd9f7 340 return playPromise.then(() => done())
244b4ae3 341 .catch((err: Error) => {
70b40c2e
C
342 if (err.message.indexOf('The play() request was interrupted by a call to pause()') !== -1) {
343 return
344 }
345
80109b2d
C
346 console.error(err)
347 this.player.pause()
348 this.player.posterImage.show()
349 this.player.removeClass('vjs-has-autoplay')
91d95589 350 this.player.removeClass('vjs-has-big-play-button-clicked')
5c7d6508 351 this.player.removeClass('vjs-playing-audio-only-content')
80109b2d
C
352
353 return done()
354 })
355 }
356
357 return done()
358 }
359
f37bad63
C
360 private seek (time: number) {
361 this.player.currentTime(time)
362 this.player.handleTechSeeked_()
363 }
364
a8462c8e 365 private getAppropriateFile (averageDownloadSpeed?: number): VideoFile {
3cd56a29
C
366 if (this.videoFiles === undefined) return undefined
367
368 const files = this.videoFiles.filter(f => f.resolution.id !== 0)
369
370 if (files.length === 0) return undefined
371 if (files.length === 1) return files[0]
a8462c8e 372
aea53cc6 373 // Don't change the torrent if the player ended
3c40590d
C
374 if (this.torrent && this.torrent.progress === 1 && this.player.ended()) return this.currentVideoFile
375
376 if (!averageDownloadSpeed) averageDownloadSpeed = this.getAndSaveActualDownloadSpeed()
a8462c8e 377
0b755f3b 378 // Limit resolution according to player height
c4710631 379 const playerHeight = this.playerElement.offsetHeight
0b755f3b
C
380
381 // We take the first resolution just above the player height
382 // Example: player height is 530px, we want the 720p file instead of 480p
3cd56a29
C
383 let maxResolution = files[0].resolution.id
384 for (let i = files.length - 1; i >= 0; i--) {
385 const resolutionId = files[i].resolution.id
386 if (resolutionId !== 0 && resolutionId >= playerHeight) {
0b755f3b
C
387 maxResolution = resolutionId
388 break
a8462c8e 389 }
0b755f3b 390 }
a8462c8e 391
0b755f3b 392 // Filter videos we can play according to our screen resolution and bandwidth
3cd56a29
C
393 const filteredFiles = files.filter(f => f.resolution.id <= maxResolution)
394 .filter(f => {
395 const fileBitrate = (f.size / this.videoDuration)
396 let threshold = fileBitrate
0b755f3b 397
3cd56a29
C
398 // If this is for a higher resolution or an initial load: add a margin
399 if (!this.currentVideoFile || f.resolution.id > this.currentVideoFile.resolution.id) {
400 threshold += ((fileBitrate * this.CONSTANTS.AUTO_QUALITY_THRESHOLD_PERCENT) / 100)
401 }
0b755f3b 402
3cd56a29
C
403 return averageDownloadSpeed > threshold
404 })
a8462c8e
C
405
406 // If the download speed is too bad, return the lowest resolution we have
3cd56a29 407 if (filteredFiles.length === 0) return videoFileMinByResolution(files)
a8462c8e 408
6cca7360 409 return videoFileMaxByResolution(filteredFiles)
a8462c8e
C
410 }
411
3c40590d 412 private getAndSaveActualDownloadSpeed () {
a8462c8e
C
413 const start = Math.max(this.downloadSpeeds.length - this.CONSTANTS.BANDWIDTH_AVERAGE_NUMBER_OF_VALUES, 0)
414 const lastDownloadSpeeds = this.downloadSpeeds.slice(start, this.downloadSpeeds.length)
415 if (lastDownloadSpeeds.length === 0) return -1
416
417 const sum = lastDownloadSpeeds.reduce((a, b) => a + b)
418 const averageBandwidth = Math.round(sum / lastDownloadSpeeds.length)
419
420 // Save the average bandwidth for future use
421 saveAverageBandwidth(averageBandwidth)
ed9f9f5f 422
a8462c8e 423 return averageBandwidth
ed9f9f5f
C
424 }
425
0dcf9a14 426 private initializePlayer () {
2adfc7ea 427 this.buildQualities()
c6352f2c 428
72efdda5 429 if (this.autoplay) {
33d78552 430 this.player.posterImage.hide()
e6f62797 431
a325db17 432 return this.updateVideoFile(undefined, { forcePlay: true, seek: this.startTime })
b335ccec 433 }
e7eb5b39 434
b335ccec 435 // Proxy first play
f5fcd9f7
C
436 const oldPlay = this.player.play.bind(this.player);
437 (this.player as any).play = () => {
b335ccec
C
438 this.player.addClass('vjs-has-big-play-button-clicked')
439 this.player.play = oldPlay
440
a325db17 441 this.updateVideoFile(undefined, { forcePlay: true, seek: this.startTime })
aa8b6df4 442 }
a22bfc3e 443 }
aa8b6df4 444
a8462c8e
C
445 private runAutoQualityScheduler () {
446 this.autoQualityInterval = setInterval(() => {
7ee4a4af 447
877b0528
C
448 // Not initialized or in HTTP fallback
449 if (this.torrent === undefined || this.torrent === null) return
2adfc7ea 450 if (this.autoResolution === false) return
a8462c8e
C
451 if (this.isAutoResolutionObservation === true) return
452
453 const file = this.getAppropriateFile()
454 let changeResolution = false
455 let changeResolutionDelay = 0
456
457 // Lower resolution
458 if (this.isPlayerWaiting() && file.resolution.id < this.currentVideoFile.resolution.id) {
459 console.log('Downgrading automatically the resolution to: %s', file.resolution.label)
460 changeResolution = true
7ee4a4af 461 } else if (file.resolution.id > this.currentVideoFile.resolution.id) { // Higher resolution
a8462c8e
C
462 console.log('Upgrading automatically the resolution to: %s', file.resolution.label)
463 changeResolution = true
7ee4a4af 464 changeResolutionDelay = this.CONSTANTS.AUTO_QUALITY_HIGHER_RESOLUTION_DELAY
a8462c8e
C
465 }
466
467 if (changeResolution === true) {
468 this.updateResolution(file.resolution.id, changeResolutionDelay)
469
470 // Wait some seconds in observation of our new resolution
471 this.isAutoResolutionObservation = true
7ee4a4af
C
472
473 this.qualityObservationTimer = setTimeout(() => {
474 this.isAutoResolutionObservation = false
475 }, this.CONSTANTS.AUTO_QUALITY_OBSERVATION_TIME)
a8462c8e
C
476 }
477 }, this.CONSTANTS.AUTO_QUALITY_SCHEDULER)
478 }
479
480 private isPlayerWaiting () {
7ee4a4af 481 return this.player && this.player.hasClass('vjs-waiting')
a8462c8e
C
482 }
483
a22bfc3e 484 private runTorrentInfoScheduler () {
3bcfff7f 485 this.torrentInfoInterval = setInterval(() => {
bf5685f0
C
486 // Not initialized yet
487 if (this.torrent === undefined) return
488
489 // Http fallback
2adfc7ea 490 if (this.torrent === null) return this.player.trigger('p2pInfo', false)
bf5685f0 491
b7f1747d
C
492 // this.webtorrent.downloadSpeed because we need to take into account the potential old torrent too
493 if (this.webtorrent.downloadSpeed !== 0) this.downloadSpeeds.push(this.webtorrent.downloadSpeed)
a8462c8e 494
2adfc7ea 495 return this.player.trigger('p2pInfo', {
17152837 496 source: 'webtorrent',
09209296
C
497 http: {
498 downloadSpeed: 0,
499 uploadSpeed: 0,
500 downloaded: 0,
501 uploaded: 0
502 },
3b6f205c
C
503 p2p: {
504 downloadSpeed: this.torrent.downloadSpeed,
505 numPeers: this.torrent.numPeers,
506 uploadSpeed: this.torrent.uploadSpeed,
507 downloaded: this.torrent.downloaded,
508 uploaded: this.torrent.uploaded
509 }
510 } as PlayerNetworkInfo)
a8462c8e 511 }, this.CONSTANTS.INFO_SCHEDULER)
a22bfc3e 512 }
aa8b6df4 513
a73115f3
C
514 private fallbackToHttp (options: PlayOptions, done?: Function) {
515 const paused = this.player.paused()
516
c4082b8b
C
517 this.disableAutoResolution(true)
518
bf5685f0
C
519 this.flushVideoFile(this.currentVideoFile, true)
520 this.torrent = null
521
522 // Enable error display now this is our last fallback
523 this.player.one('error', () => this.enableErrorDisplay())
524
525 const httpUrl = this.currentVideoFile.fileUrl
526 this.player.src = this.savePlayerSrcFunction
527 this.player.src(httpUrl)
c6352f2c 528
2adfc7ea
C
529 this.changeQuality()
530
c32bf839 531 // We changed the source, so reinit captions
2adfc7ea 532 this.player.trigger('sourcechange')
c32bf839 533
a73115f3
C
534 return this.tryToPlay(err => {
535 if (err && done) return done(err)
536
537 if (options.seek) this.seek(options.seek)
538 if (options.forcePlay === false && paused === true) this.player.pause()
539
540 if (done) return done()
541 })
bf5685f0
C
542 }
543
a22bfc3e
C
544 private handleError (err: Error | string) {
545 return this.player.trigger('customError', { err })
aa8b6df4 546 }
bf5685f0
C
547
548 private enableErrorDisplay () {
549 this.player.addClass('vjs-error-display-enabled')
550 }
551
552 private disableErrorDisplay () {
553 this.player.removeClass('vjs-error-display-enabled')
554 }
e993ecb3 555
8eb8bc20
C
556 private pickAverageVideoFile () {
557 if (this.videoFiles.length === 1) return this.videoFiles[0]
558
559 return this.videoFiles[Math.floor(this.videoFiles.length / 2)]
560 }
561
c199c427 562 private stopTorrent (torrent: WebTorrent.Torrent) {
b335ccec
C
563 torrent.pause()
564 // Pause does not remove actual peers (in particular the webseed peer)
565 torrent.removePeer(torrent[ 'ws' ])
566 }
567
568 private renderFileInFakeElement (file: WebTorrent.TorrentFile, delay: number) {
3b019808 569 this.destroyingFakeRenderer = false
287918da 570
b335ccec
C
571 const fakeVideoElem = document.createElement('video')
572 renderVideo(file, fakeVideoElem, { autoplay: false, controls: false }, (err, renderer) => {
573 this.fakeRenderer = renderer
574
287918da 575 // The renderer returns an error when we destroy it, so skip them
3b019808 576 if (this.destroyingFakeRenderer === false && err) {
287918da
C
577 console.error('Cannot render new torrent in fake video element.', err)
578 }
b335ccec
C
579
580 // Load the future file at the correct time (in delay MS - 2 seconds)
581 fakeVideoElem.currentTime = this.player.currentTime() + (delay - 2000)
582 })
583 }
584
054a103b
C
585 private destroyFakeRenderer () {
586 if (this.fakeRenderer) {
3b019808 587 this.destroyingFakeRenderer = true
287918da 588
054a103b
C
589 if (this.fakeRenderer.destroy) {
590 try {
591 this.fakeRenderer.destroy()
592 } catch (err) {
593 console.log('Cannot destroy correctly fake renderer.', err)
594 }
595 }
596 this.fakeRenderer = undefined
597 }
598 }
599
2adfc7ea
C
600 private buildQualities () {
601 const qualityLevelsPayload = []
602
603 for (const file of this.videoFiles) {
604 const representation = {
605 id: file.resolution.id,
606 label: this.buildQualityLabel(file),
607 height: file.resolution.id,
608 _enabled: true
609 }
610
611 this.player.qualityLevels().addQualityLevel(representation)
612
613 qualityLevelsPayload.push({
614 id: representation.id,
615 label: representation.label,
616 selected: false
617 })
16f7022b 618 }
c32bf839 619
2adfc7ea
C
620 const payload: LoadedQualityData = {
621 qualitySwitchCallback: (d: any) => this.qualitySwitchCallback(d),
622 qualityData: {
623 video: qualityLevelsPayload
624 }
625 }
f5fcd9f7 626 this.player.tech(true).trigger('loadedqualitydata', payload)
16f7022b
C
627 }
628
2adfc7ea
C
629 private buildQualityLabel (file: VideoFile) {
630 let label = file.resolution.label
631
632 if (file.fps && file.fps >= 50) {
633 label += file.fps
e993ecb3 634 }
2adfc7ea
C
635
636 return label
637 }
638
639 private qualitySwitchCallback (id: number) {
640 if (id === -1) {
641 if (this.autoResolutionPossible === true) this.enableAutoResolution()
642 return
643 }
644
645 this.disableAutoResolution()
646 this.updateResolution(id)
647 }
648
649 private changeQuality () {
650 const resolutionId = this.currentVideoFile.resolution.id
651 const qualityLevels = this.player.qualityLevels()
652
653 if (resolutionId === -1) {
654 qualityLevels.selectedIndex = -1
655 return
656 }
657
f5fcd9f7 658 for (let i = 0; i < qualityLevels.length; i++) {
cf57794e
C
659 const q = qualityLevels[i]
660 if (q.height === resolutionId) qualityLevels.selectedIndex_ = i
e993ecb3
C
661 }
662 }
aa8b6df4 663}
c6352f2c 664
2adfc7ea
C
665videojs.registerPlugin('webtorrent', WebTorrentPlugin)
666export { WebTorrentPlugin }