]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/peertube-videojs-plugin.ts
Smooth resolution change?
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / peertube-videojs-plugin.ts
CommitLineData
63c4db6d 1import * as videojs from 'video.js'
aa8b6df4 2import * as WebTorrent from 'webtorrent'
b6827820 3import { VideoFile } from '../../../../shared/models/videos/video.model'
aa8b6df4 4import { renderVideo } from './video-renderer'
c6352f2c
C
5import './settings-menu-button'
6import { PeertubePluginOptions, VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings'
6cca7360
C
7import {
8 getAverageBandwidth,
9 getStoredMute,
2ce2fd7f 10 getStoredVolume, isMobile,
6cca7360
C
11 saveAverageBandwidth,
12 saveMuteInStore,
13 saveVolumeInStore,
14 videoFileMaxByResolution,
15 videoFileMinByResolution
16} from './utils'
efda99c3
C
17import * as CacheChunkStore from 'cache-chunk-store'
18import { PeertubeChunkStore } from './peertube-chunk-store'
be6a4802 19
d402fb5b
C
20const webtorrent = new WebTorrent({
21 tracker: {
22 rtcConfig: {
23 iceServers: [
24 {
25 urls: 'stun:stun.stunprotocol.org'
26 },
27 {
28 urls: 'stun:stun.framasoft.org'
d402fb5b
C
29 }
30 ]
31 }
32 },
33 dht: false
34})
aa8b6df4 35
a22bfc3e
C
36const Plugin: VideoJSComponentInterface = videojsUntyped.getPlugin('plugin')
37class PeerTubePlugin extends Plugin {
c6352f2c 38 private readonly playerElement: HTMLVideoElement
a8462c8e 39
c6352f2c 40 private readonly autoplay: boolean = false
f37bad63 41 private readonly startTime: number = 0
c6352f2c 42 private readonly savePlayerSrcFunction: Function
a8462c8e
C
43 private readonly videoFiles: VideoFile[]
44 private readonly videoViewUrl: string
45 private readonly videoDuration: number
46 private readonly CONSTANTS = {
47 INFO_SCHEDULER: 1000, // Don't change this
48 AUTO_QUALITY_SCHEDULER: 3000, // Check quality every 3 seconds
49 AUTO_QUALITY_THRESHOLD_PERCENT: 30, // Bandwidth should be 30% more important than a resolution bitrate to change to it
7ee4a4af
C
50 AUTO_QUALITY_OBSERVATION_TIME: 10000, // Wait 10 seconds after having change the resolution before another check
51 AUTO_QUALITY_HIGHER_RESOLUTION_DELAY: 5000, // Buffering higher resolution during 5 seconds
a8462c8e
C
52 BANDWIDTH_AVERAGE_NUMBER_OF_VALUES: 5 // Last 5 seconds to build average bandwidth
53 }
54
a22bfc3e
C
55 private player: any
56 private currentVideoFile: VideoFile
a22bfc3e 57 private torrent: WebTorrent.Torrent
7ee4a4af
C
58 private autoResolution = true
59 private isAutoResolutionObservation = false
60
8cac1b64 61 private videoViewInterval
3bcfff7f 62 private torrentInfoInterval
a8462c8e 63 private autoQualityInterval
7ee4a4af
C
64 private addTorrentDelay
65 private qualityObservationTimer
66 private runAutoQualitySchedulerTimer
a8462c8e
C
67
68 private downloadSpeeds: number[] = []
a22bfc3e 69
339632b4 70 constructor (player: videojs.Player, options: PeertubePluginOptions) {
a22bfc3e
C
71 super(player, options)
72
e7eb5b39
C
73 // Disable auto play on iOS
74 this.autoplay = options.autoplay && this.isIOS() === false
481d3596 75
f37bad63 76 this.startTime = options.startTime
a22bfc3e 77 this.videoFiles = options.videoFiles
8cac1b64 78 this.videoViewUrl = options.videoViewUrl
3bcfff7f 79 this.videoDuration = options.videoDuration
a22bfc3e 80
bf5685f0 81 this.savePlayerSrcFunction = this.player.src
a22bfc3e
C
82 // Hack to "simulate" src link in video.js >= 6
83 // Without this, we can't play the video after pausing it
84 // https://github.com/videojs/video.js/blob/master/src/js/player.js#L1633
bf5685f0 85 this.player.src = () => true
a22bfc3e
C
86
87 this.playerElement = options.playerElement
88
e6f62797
C
89 if (this.autoplay === true) this.player.addClass('vjs-has-autoplay')
90
a22bfc3e 91 this.player.ready(() => {
c6352f2c
C
92 const volume = getStoredVolume()
93 if (volume !== undefined) this.player.volume(volume)
94 const muted = getStoredMute()
95 if (muted !== undefined) this.player.muted(muted)
96
0dcf9a14 97 this.initializePlayer()
a22bfc3e 98 this.runTorrentInfoScheduler()
3bcfff7f 99 this.runViewAdd()
a8462c8e
C
100
101 this.player.one('play', () => {
f37bad63 102 // Don't run immediately scheduler, wait some seconds the TCP connections are made
7ee4a4af
C
103 this.runAutoQualitySchedulerTimer = setTimeout(() => {
104 this.runAutoQualityScheduler()
105 }, this.CONSTANTS.AUTO_QUALITY_SCHEDULER)
a8462c8e 106 })
a22bfc3e 107 })
c6352f2c
C
108
109 this.player.on('volumechange', () => {
110 saveVolumeInStore(this.player.volume())
111 saveMuteInStore(this.player.muted())
112 })
a22bfc3e
C
113 }
114
115 dispose () {
7ee4a4af
C
116 clearTimeout(this.addTorrentDelay)
117 clearTimeout(this.qualityObservationTimer)
118 clearTimeout(this.runAutoQualitySchedulerTimer)
119
3bcfff7f
C
120 clearInterval(this.videoViewInterval)
121 clearInterval(this.torrentInfoInterval)
a8462c8e 122 clearInterval(this.autoQualityInterval)
3bcfff7f 123
a22bfc3e
C
124 // Don't need to destroy renderer, video player will be destroyed
125 this.flushVideoFile(this.currentVideoFile, false)
aa8b6df4
C
126 }
127
09700934
C
128 getCurrentResolutionId () {
129 return this.currentVideoFile ? this.currentVideoFile.resolution.id : -1
aa8b6df4
C
130 }
131
a22bfc3e 132 getCurrentResolutionLabel () {
09700934 133 return this.currentVideoFile ? this.currentVideoFile.resolution.label : ''
aa8b6df4
C
134 }
135
3baf9be2
C
136 updateVideoFile (
137 videoFile?: VideoFile,
138 options: {
139 forcePlay?: boolean,
140 seek?: number,
141 delay?: number
142 } = {},
143 done: () => void = () => { /* empty */ }
144 ) {
a8462c8e 145 // Automatically choose the adapted video file
aa8b6df4 146 if (videoFile === undefined) {
a8462c8e
C
147 const savedAverageBandwidth = getAverageBandwidth()
148 videoFile = savedAverageBandwidth
149 ? this.getAppropriateFile(savedAverageBandwidth)
8eb8bc20 150 : this.pickAverageVideoFile()
aa8b6df4
C
151 }
152
153 // Don't add the same video file once again
a22bfc3e 154 if (this.currentVideoFile !== undefined && this.currentVideoFile.magnetUri === videoFile.magnetUri) {
aa8b6df4
C
155 return
156 }
157
c6352f2c 158 // Do not display error to user because we will have multiple fallback
bf5685f0 159 this.disableErrorDisplay()
1198a08c 160
bf5685f0 161 this.player.src = () => true
c6352f2c 162 const oldPlaybackRate = this.player.playbackRate()
bf5685f0 163
a22bfc3e
C
164 const previousVideoFile = this.currentVideoFile
165 this.currentVideoFile = videoFile
aa8b6df4 166
3baf9be2 167 this.addTorrent(this.currentVideoFile.magnetUri, previousVideoFile, options, () => {
c6352f2c
C
168 this.player.playbackRate(oldPlaybackRate)
169 return done()
170 })
a216c623
C
171
172 this.trigger('videoFileUpdate')
173 }
174
3baf9be2
C
175 addTorrent (
176 magnetOrTorrentUrl: string,
177 previousVideoFile: VideoFile,
178 options: {
179 forcePlay?: boolean,
180 seek?: number,
181 delay?: number
182 },
183 done: Function
184 ) {
a216c623
C
185 console.log('Adding ' + magnetOrTorrentUrl + '.')
186
a8462c8e 187 const oldTorrent = this.torrent
6d272f39 188 let fakeRenderer
3baf9be2 189 const torrentOptions = {
efda99c3
C
190 store: (chunkLength, storeOpts) => new CacheChunkStore(new PeertubeChunkStore(chunkLength, storeOpts), {
191 max: 100
192 })
193 }
194
3baf9be2 195 this.torrent = webtorrent.add(magnetOrTorrentUrl, torrentOptions, torrent => {
a216c623 196 console.log('Added ' + magnetOrTorrentUrl + '.')
aa8b6df4 197
a8462c8e
C
198 // Pause the old torrent
199 if (oldTorrent) {
200 oldTorrent.pause()
201 // Pause does not remove actual peers (in particular the webseed peer)
202 oldTorrent.removePeer(oldTorrent['ws'])
6d272f39
C
203
204 // We use a fake renderer so we download correct pieces of the next file
205 // This way we'll be able to
206 if (options.delay) {
207 const fakeVideoElem = document.createElement('video')
208 renderVideo(torrent.files[0], fakeVideoElem, { autoplay: false, controls: false }, (err, renderer) => {
209 fakeRenderer = renderer
210
211 if (err) {
212 console.error('Cannot render new torrent in fake video element.', err)
213 }
214
215 // Load the future file at the correct time
216 fakeVideoElem.currentTime = this.player.currentTime() + (options.delay / 2000)
217 })
218 }
a8462c8e 219 }
aa8b6df4 220
e7eb5b39 221 // Render the video in a few seconds? (on resolution change for example, we wait some seconds of the new video resolution)
7ee4a4af 222 this.addTorrentDelay = setTimeout(() => {
6d272f39
C
223 if (fakeRenderer) {
224 if (fakeRenderer.destroy) {
225 try {
226 fakeRenderer.destroy()
227 } catch (err) {
228 console.log('Cannot destroy correctly fake renderer.', err)
229 }
230 }
231 fakeRenderer = undefined
232 }
233
3baf9be2
C
234 const paused = this.player.paused()
235
a8462c8e 236 this.flushVideoFile(previousVideoFile)
0dcf9a14 237
3baf9be2
C
238 const renderVideoOptions = { autoplay: false, controls: true }
239 renderVideo(torrent.files[0], this.playerElement, renderVideoOptions,(err, renderer) => {
a8462c8e 240 this.renderer = renderer
aa8b6df4 241
a8462c8e 242 if (err) return this.fallbackToHttp(done)
3bcfff7f 243
3baf9be2
C
244 return this.tryToPlay(err => {
245 if (err) return done(err)
a8462c8e 246
3baf9be2
C
247 if (options.seek) this.seek(options.seek)
248 if (options.forcePlay === false && paused === true) this.player.pause()
249 })
a8462c8e 250 })
3baf9be2 251 }, options.delay || 0)
aa8b6df4
C
252 })
253
a22bfc3e 254 this.torrent.on('error', err => this.handleError(err))
a216c623 255
a22bfc3e 256 this.torrent.on('warning', (err: any) => {
a96aed15 257 // We don't support HTTP tracker but we don't care -> we use the web socket tracker
531ab5b6 258 if (err.message.indexOf('Unsupported tracker protocol') !== -1) return
a216c623 259
7dbdc3ba
C
260 // Users don't care about issues with WebRTC, but developers do so log it in the console
261 if (err.message.indexOf('Ice connection failed') !== -1) {
262 console.error(err)
263 return
264 }
a96aed15 265
a216c623
C
266 // Magnet hash is not up to date with the torrent file, add directly the torrent file
267 if (err.message.indexOf('incorrect info hash') !== -1) {
268 console.error('Incorrect info hash detected, falling back to torrent file.')
3baf9be2
C
269 const options = { forcePlay: true }
270 return this.addTorrent(this.torrent['xs'], previousVideoFile, options, done)
a216c623
C
271 }
272
a22bfc3e 273 return this.handleError(err)
a96aed15 274 })
aa8b6df4
C
275 }
276
a8462c8e 277 updateResolution (resolutionId: number, delay = 0) {
aa8b6df4 278 // Remember player state
a22bfc3e
C
279 const currentTime = this.player.currentTime()
280 const isPaused = this.player.paused()
aa8b6df4 281
531ab5b6
C
282 // Remove poster to have black background
283 this.playerElement.poster = ''
284
aa8b6df4 285 // Hide bigPlayButton
8fa5653a 286 if (!isPaused) {
a22bfc3e 287 this.player.bigPlayButton.hide()
aa8b6df4
C
288 }
289
09700934 290 const newVideoFile = this.videoFiles.find(f => f.resolution.id === resolutionId)
3baf9be2
C
291 const options = {
292 forcePlay: false,
293 delay,
91d95589 294 seek: currentTime + (delay / 1000)
3baf9be2
C
295 }
296 this.updateVideoFile(newVideoFile, options)
aa8b6df4
C
297 }
298
a22bfc3e 299 flushVideoFile (videoFile: VideoFile, destroyRenderer = true) {
aa8b6df4 300 if (videoFile !== undefined && webtorrent.get(videoFile.magnetUri)) {
bf5685f0
C
301 if (destroyRenderer === true && this.renderer && this.renderer.destroy) this.renderer.destroy()
302
aa8b6df4 303 webtorrent.remove(videoFile.magnetUri)
a22bfc3e 304 console.log('Removed ' + videoFile.magnetUri)
aa8b6df4
C
305 }
306 }
307
a8462c8e
C
308 isAutoResolutionOn () {
309 return this.autoResolution
310 }
311
312 enableAutoResolution () {
313 this.autoResolution = true
314 this.trigger('autoResolutionUpdate')
315 }
316
317 disableAutoResolution () {
318 this.autoResolution = false
319 this.trigger('autoResolutionUpdate')
320 }
321
960a11e8
C
322 getCurrentVideoFile () {
323 return this.currentVideoFile
324 }
325
77728efa
C
326 getTorrent () {
327 return this.torrent
328 }
329
80109b2d
C
330 private tryToPlay (done?: Function) {
331 if (!done) done = function () { /* empty */ }
1fad099d 332
80109b2d
C
333 const playPromise = this.player.play()
334 if (playPromise !== undefined) {
335 return playPromise.then(done)
336 .catch(err => {
337 console.error(err)
338 this.player.pause()
339 this.player.posterImage.show()
340 this.player.removeClass('vjs-has-autoplay')
91d95589 341 this.player.removeClass('vjs-has-big-play-button-clicked')
80109b2d
C
342
343 return done()
344 })
345 }
346
347 return done()
348 }
349
f37bad63
C
350 private seek (time: number) {
351 this.player.currentTime(time)
352 this.player.handleTechSeeked_()
353 }
354
a8462c8e
C
355 private getAppropriateFile (averageDownloadSpeed?: number): VideoFile {
356 if (this.videoFiles === undefined || this.videoFiles.length === 0) return undefined
357 if (this.videoFiles.length === 1) return this.videoFiles[0]
a8462c8e 358
3c40590d
C
359 // Don't change the torrent is the play was ended
360 if (this.torrent && this.torrent.progress === 1 && this.player.ended()) return this.currentVideoFile
361
362 if (!averageDownloadSpeed) averageDownloadSpeed = this.getAndSaveActualDownloadSpeed()
a8462c8e
C
363
364 // Filter videos we can play according to our bandwidth
365 const filteredFiles = this.videoFiles.filter(f => {
366 const fileBitrate = (f.size / this.videoDuration)
367 let threshold = fileBitrate
368
7ee4a4af 369 // If this is for a higher resolution or an initial load: add a margin
a8462c8e
C
370 if (!this.currentVideoFile || f.resolution.id > this.currentVideoFile.resolution.id) {
371 threshold += ((fileBitrate * this.CONSTANTS.AUTO_QUALITY_THRESHOLD_PERCENT) / 100)
372 }
373
374 return averageDownloadSpeed > threshold
375 })
376
377 // If the download speed is too bad, return the lowest resolution we have
6cca7360 378 if (filteredFiles.length === 0) return videoFileMinByResolution(this.videoFiles)
a8462c8e 379
6cca7360 380 return videoFileMaxByResolution(filteredFiles)
a8462c8e
C
381 }
382
3c40590d 383 private getAndSaveActualDownloadSpeed () {
a8462c8e
C
384 const start = Math.max(this.downloadSpeeds.length - this.CONSTANTS.BANDWIDTH_AVERAGE_NUMBER_OF_VALUES, 0)
385 const lastDownloadSpeeds = this.downloadSpeeds.slice(start, this.downloadSpeeds.length)
386 if (lastDownloadSpeeds.length === 0) return -1
387
388 const sum = lastDownloadSpeeds.reduce((a, b) => a + b)
389 const averageBandwidth = Math.round(sum / lastDownloadSpeeds.length)
390
391 // Save the average bandwidth for future use
392 saveAverageBandwidth(averageBandwidth)
ed9f9f5f 393
a8462c8e 394 return averageBandwidth
ed9f9f5f
C
395 }
396
0dcf9a14 397 private initializePlayer () {
2ce2fd7f
C
398 if (isMobile()) this.player.addClass('vjs-is-mobile')
399
e993ecb3
C
400 this.initSmoothProgressBar()
401
c6352f2c
C
402 this.alterInactivity()
403
481d3596 404 if (this.autoplay === true) {
33d78552 405 this.player.posterImage.hide()
e6f62797 406
3baf9be2 407 this.updateVideoFile(undefined, { forcePlay: true, seek: this.startTime })
aa8b6df4 408 } else {
e7eb5b39
C
409 // Don't try on iOS that does not support MediaSource
410 if (this.isIOS()) {
8eb8bc20 411 this.currentVideoFile = this.pickAverageVideoFile()
e7eb5b39
C
412 return this.fallbackToHttp(undefined, false)
413 }
414
b891f9bc 415 // Proxy first play
c6352f2c
C
416 const oldPlay = this.player.play.bind(this.player)
417 this.player.play = () => {
864e782b 418 this.player.addClass('vjs-has-big-play-button-clicked')
c6352f2c 419 this.player.play = oldPlay
864e782b 420
3baf9be2 421 this.updateVideoFile(undefined, { forcePlay: true, seek: this.startTime })
c6352f2c 422 }
aa8b6df4 423 }
a22bfc3e 424 }
aa8b6df4 425
a8462c8e
C
426 private runAutoQualityScheduler () {
427 this.autoQualityInterval = setInterval(() => {
7ee4a4af 428
877b0528
C
429 // Not initialized or in HTTP fallback
430 if (this.torrent === undefined || this.torrent === null) return
a8462c8e
C
431 if (this.isAutoResolutionOn() === false) return
432 if (this.isAutoResolutionObservation === true) return
433
434 const file = this.getAppropriateFile()
435 let changeResolution = false
436 let changeResolutionDelay = 0
437
438 // Lower resolution
439 if (this.isPlayerWaiting() && file.resolution.id < this.currentVideoFile.resolution.id) {
440 console.log('Downgrading automatically the resolution to: %s', file.resolution.label)
441 changeResolution = true
7ee4a4af 442 } else if (file.resolution.id > this.currentVideoFile.resolution.id) { // Higher resolution
a8462c8e
C
443 console.log('Upgrading automatically the resolution to: %s', file.resolution.label)
444 changeResolution = true
7ee4a4af 445 changeResolutionDelay = this.CONSTANTS.AUTO_QUALITY_HIGHER_RESOLUTION_DELAY
a8462c8e
C
446 }
447
448 if (changeResolution === true) {
449 this.updateResolution(file.resolution.id, changeResolutionDelay)
450
451 // Wait some seconds in observation of our new resolution
452 this.isAutoResolutionObservation = true
7ee4a4af
C
453
454 this.qualityObservationTimer = setTimeout(() => {
455 this.isAutoResolutionObservation = false
456 }, this.CONSTANTS.AUTO_QUALITY_OBSERVATION_TIME)
a8462c8e
C
457 }
458 }, this.CONSTANTS.AUTO_QUALITY_SCHEDULER)
459 }
460
461 private isPlayerWaiting () {
7ee4a4af 462 return this.player && this.player.hasClass('vjs-waiting')
a8462c8e
C
463 }
464
a22bfc3e 465 private runTorrentInfoScheduler () {
3bcfff7f 466 this.torrentInfoInterval = setInterval(() => {
bf5685f0
C
467 // Not initialized yet
468 if (this.torrent === undefined) return
469
470 // Http fallback
471 if (this.torrent === null) return this.trigger('torrentInfo', false)
472
a8462c8e
C
473 // webtorrent.downloadSpeed because we need to take into account the potential old torrent too
474 if (webtorrent.downloadSpeed !== 0) this.downloadSpeeds.push(webtorrent.downloadSpeed)
475
bf5685f0
C
476 return this.trigger('torrentInfo', {
477 downloadSpeed: this.torrent.downloadSpeed,
478 numPeers: this.torrent.numPeers,
479 uploadSpeed: this.torrent.uploadSpeed
480 })
a8462c8e 481 }, this.CONSTANTS.INFO_SCHEDULER)
a22bfc3e 482 }
aa8b6df4 483
8cac1b64
C
484 private runViewAdd () {
485 this.clearVideoViewInterval()
486
487 // After 30 seconds (or 3/4 of the video), add a view to the video
488 let minSecondsToView = 30
489
3bcfff7f 490 if (this.videoDuration < minSecondsToView) minSecondsToView = (this.videoDuration * 3) / 4
8cac1b64
C
491
492 let secondsViewed = 0
493 this.videoViewInterval = setInterval(() => {
494 if (this.player && !this.player.paused()) {
495 secondsViewed += 1
496
497 if (secondsViewed > minSecondsToView) {
498 this.clearVideoViewInterval()
499
500 this.addViewToVideo().catch(err => console.error(err))
501 }
502 }
503 }, 1000)
504 }
505
506 private clearVideoViewInterval () {
507 if (this.videoViewInterval !== undefined) {
508 clearInterval(this.videoViewInterval)
509 this.videoViewInterval = undefined
510 }
511 }
512
513 private addViewToVideo () {
514 return fetch(this.videoViewUrl, { method: 'POST' })
515 }
516
e7eb5b39 517 private fallbackToHttp (done?: Function, play = true) {
bf5685f0
C
518 this.flushVideoFile(this.currentVideoFile, true)
519 this.torrent = null
520
521 // Enable error display now this is our last fallback
522 this.player.one('error', () => this.enableErrorDisplay())
523
524 const httpUrl = this.currentVideoFile.fileUrl
525 this.player.src = this.savePlayerSrcFunction
526 this.player.src(httpUrl)
e7eb5b39 527 if (play) this.tryToPlay()
c6352f2c 528
e7eb5b39 529 if (done) return done()
bf5685f0
C
530 }
531
a22bfc3e
C
532 private handleError (err: Error | string) {
533 return this.player.trigger('customError', { err })
aa8b6df4 534 }
bf5685f0
C
535
536 private enableErrorDisplay () {
537 this.player.addClass('vjs-error-display-enabled')
538 }
539
540 private disableErrorDisplay () {
541 this.player.removeClass('vjs-error-display-enabled')
542 }
e993ecb3 543
e7eb5b39
C
544 private isIOS () {
545 return !!navigator.platform && /iPad|iPhone|iPod/.test(navigator.platform)
546 }
547
c6352f2c
C
548 private alterInactivity () {
549 let saveInactivityTimeout: number
550
551 const disableInactivity = () => {
552 saveInactivityTimeout = this.player.options_.inactivityTimeout
553 this.player.options_.inactivityTimeout = 0
554 }
555 const enableInactivity = () => {
b891f9bc 556 this.player.options_.inactivityTimeout = saveInactivityTimeout
c6352f2c
C
557 }
558
559 const settingsDialog = this.player.children_.find(c => c.name_ === 'SettingsDialog')
560
561 this.player.controlBar.on('mouseenter', () => disableInactivity())
562 settingsDialog.on('mouseenter', () => disableInactivity())
563 this.player.controlBar.on('mouseleave', () => enableInactivity())
564 settingsDialog.on('mouseleave', () => enableInactivity())
565 }
566
8eb8bc20
C
567 private pickAverageVideoFile () {
568 if (this.videoFiles.length === 1) return this.videoFiles[0]
569
570 return this.videoFiles[Math.floor(this.videoFiles.length / 2)]
571 }
572
e993ecb3
C
573 // Thanks: https://github.com/videojs/video.js/issues/4460#issuecomment-312861657
574 private initSmoothProgressBar () {
575 const SeekBar = videojsUntyped.getComponent('SeekBar')
576 SeekBar.prototype.getPercent = function getPercent () {
577 // Allows for smooth scrubbing, when player can't keep up.
578 // const time = (this.player_.scrubbing()) ?
579 // this.player_.getCache().currentTime :
580 // this.player_.currentTime()
581 const time = this.player_.currentTime()
582 const percent = time / this.player_.duration()
583 return percent >= 1 ? 1 : percent
584 }
585 SeekBar.prototype.handleMouseMove = function handleMouseMove (event) {
586 let newTime = this.calculateDistance(event) * this.player_.duration()
587 if (newTime === this.player_.duration()) {
588 newTime = newTime - 0.1
589 }
590 this.player_.currentTime(newTime)
591 this.update()
592 }
593 }
aa8b6df4 594}
c6352f2c 595
a22bfc3e 596videojsUntyped.registerPlugin('peertube', PeerTubePlugin)
c6352f2c 597export { PeerTubePlugin }