PeerTube/client/src/assets/player/peertube-player-manager.ts

543 lines
16 KiB
TypeScript
Raw Normal View History

2020-04-21 11:02:28 +02:00
import 'videojs-hotkeys/videojs.hotkeys'
import 'videojs-dock'
import 'videojs-contextmenu-ui'
import 'videojs-contrib-quality-levels'
2020-01-28 17:29:50 +01:00
import './upnext/end-card'
2019-12-17 16:49:33 +01:00
import './upnext/upnext-plugin'
import './bezels/bezels-plugin'
import './peertube-plugin'
2019-12-19 21:34:45 +01:00
import './videojs-components/next-video-button'
2020-01-28 17:29:50 +01:00
import './videojs-components/p2p-info-button'
import './videojs-components/peertube-link-button'
2020-01-28 17:29:50 +01:00
import './videojs-components/peertube-load-progress-bar'
import './videojs-components/resolution-menu-button'
2020-01-28 17:29:50 +01:00
import './videojs-components/resolution-menu-item'
import './videojs-components/settings-dialog'
import './videojs-components/settings-menu-button'
2020-01-28 17:29:50 +01:00
import './videojs-components/settings-menu-item'
import './videojs-components/settings-panel'
import './videojs-components/settings-panel-child'
import './videojs-components/theater-button'
2020-05-12 10:32:56 +02:00
import videojs from 'video.js'
2020-06-26 08:37:26 +02:00
import { isDefaultLocale, VideoFile } from '@shared/models'
2019-08-23 10:19:44 +02:00
import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager'
2020-05-12 10:32:56 +02:00
import { segmentUrlBuilderFactory } from './p2p-media-loader/segment-url-builder'
import { segmentValidatorFactory } from './p2p-media-loader/segment-validator'
import { getStoredP2PEnabled } from './peertube-player-local-storage'
2020-05-12 10:32:56 +02:00
import { P2PMediaLoaderPluginOptions, UserWatching, VideoJSCaption, VideoJSPluginOptions } from './peertube-videojs-typings'
2019-12-17 11:20:24 +01:00
import { TranslationsManager } from './translations-manager'
2020-05-12 10:32:56 +02:00
import { buildVideoEmbed, buildVideoLink, copyToClipboard, getRtcConfig, isIOS, isSafari } from './utils'
// Change 'Playback Rate' to 'Speed' (smaller for our settings menu)
2020-01-28 17:29:50 +01:00
(videojs.getComponent('PlaybackRateMenuButton') as any).prototype.controlText_ = 'Speed'
const CaptionsButton = videojs.getComponent('CaptionsButton') as any
// Change Captions to Subtitles/CC
2020-01-28 17:29:50 +01:00
CaptionsButton.prototype.controlText_ = 'Subtitles/CC'
// We just want to display 'Off' instead of 'captions off', keep a space so the variable == true (hacky I know)
2020-01-28 17:29:50 +01:00
CaptionsButton.prototype.label_ = ' '
2019-01-24 10:16:30 +01:00
export type PlayerMode = 'webtorrent' | 'p2p-media-loader'
2019-01-24 10:16:30 +01:00
export type WebtorrentOptions = {
videoFiles: VideoFile[]
}
2019-01-24 10:16:30 +01:00
export type P2PMediaLoaderOptions = {
playlistUrl: string
2019-01-29 08:37:25 +01:00
segmentsSha256Url: string
2019-01-24 13:43:44 +01:00
trackerAnnounce: string[]
2019-01-29 08:37:25 +01:00
redundancyBaseUrls: string[]
videoFiles: VideoFile[]
}
2019-06-11 15:59:10 +02:00
export interface CustomizationOptions {
startTime: number | string
stopTime: number | string
controls?: boolean
muted?: boolean
loop?: boolean
subtitle?: string
resume?: string
2019-06-11 15:59:10 +02:00
peertubeLink: boolean
}
export interface CommonOptions extends CustomizationOptions {
playerElement: HTMLVideoElement
2019-02-06 10:39:50 +01:00
onPlayerElementChange: (element: HTMLVideoElement) => void
autoplay: boolean
2019-12-19 21:34:45 +01:00
nextVideo?: Function
videoDuration: number
enableHotkeys: boolean
inactivityTimeout: number
poster: string
2019-12-05 17:06:18 +01:00
theaterButton: boolean
captions: boolean
videoViewUrl: string
embedUrl: string
language?: string
videoCaptions: VideoJSCaption[]
userWatching?: UserWatching
serverUrl: string
}
export type PeertubePlayerManagerOptions = {
common: CommonOptions,
2019-02-06 10:39:50 +01:00
webtorrent: WebtorrentOptions,
p2pMediaLoader?: P2PMediaLoaderOptions
}
export class PeertubePlayerManager {
2019-02-06 10:39:50 +01:00
private static playerElementClassName: string
2020-04-17 11:20:12 +02:00
private static onPlayerChange: (player: videojs.Player) => void
2020-04-17 11:20:12 +02:00
static async initialize (mode: PlayerMode, options: PeertubePlayerManagerOptions, onPlayerChange: (player: videojs.Player) => void) {
2019-01-24 13:43:44 +01:00
let p2pMediaLoader: any
2019-07-31 15:57:32 +02:00
this.onPlayerChange = onPlayerChange
2019-02-06 10:39:50 +01:00
this.playerElementClassName = options.common.playerElement.className
2019-01-29 08:37:25 +01:00
if (mode === 'webtorrent') await import('./webtorrent/webtorrent-plugin')
2019-01-24 13:43:44 +01:00
if (mode === 'p2p-media-loader') {
[ p2pMediaLoader ] = await Promise.all([
import('p2p-media-loader-hlsjs'),
2019-01-29 08:37:25 +01:00
import('./p2p-media-loader/p2p-media-loader-plugin')
2019-01-24 13:43:44 +01:00
])
}
2019-01-24 13:43:44 +01:00
const videojsOptions = this.getVideojsOptions(mode, options, p2pMediaLoader)
2019-12-17 11:20:24 +01:00
await TranslationsManager.loadLocaleInVideoJS(options.common.serverUrl, options.common.language, videojs)
const self = this
return new Promise(res => {
2020-04-17 11:20:12 +02:00
videojs(options.common.playerElement, videojsOptions, function (this: videojs.Player) {
const player = this
2019-05-16 16:55:34 +02:00
let alreadyFallback = false
2020-01-28 17:29:50 +01:00
player.tech(true).one('error', () => {
2019-05-16 16:55:34 +02:00
if (!alreadyFallback) self.maybeFallbackToWebTorrent(mode, player, options)
alreadyFallback = true
})
player.one('error', () => {
if (!alreadyFallback) self.maybeFallbackToWebTorrent(mode, player, options)
alreadyFallback = true
})
2019-02-06 10:39:50 +01:00
self.addContextMenu(mode, player, options.common.embedUrl)
player.bezels()
return res(player)
})
})
}
2019-02-20 11:26:14 +01:00
private static async maybeFallbackToWebTorrent (currentMode: PlayerMode, player: any, options: PeertubePlayerManagerOptions) {
if (currentMode === 'webtorrent') return
console.log('Fallback to webtorrent.')
2019-02-06 10:39:50 +01:00
const newVideoElement = document.createElement('video')
newVideoElement.className = this.playerElementClassName
// VideoJS wraps our video element inside a div
2019-02-20 11:26:14 +01:00
let currentParentPlayerElement = options.common.playerElement.parentNode
// Fix on IOS, don't ask me why
if (!currentParentPlayerElement) currentParentPlayerElement = document.getElementById(options.common.playerElement.id).parentNode
2019-02-06 10:39:50 +01:00
currentParentPlayerElement.parentNode.insertBefore(newVideoElement, currentParentPlayerElement)
options.common.playerElement = newVideoElement
options.common.onPlayerElementChange(newVideoElement)
player.dispose()
await import('./webtorrent/webtorrent-plugin')
const mode = 'webtorrent'
const videojsOptions = this.getVideojsOptions(mode, options)
const self = this
2020-04-17 11:20:12 +02:00
videojs(newVideoElement, videojsOptions, function (this: videojs.Player) {
2019-02-06 10:39:50 +01:00
const player = this
self.addContextMenu(mode, player, options.common.embedUrl)
2019-07-31 15:57:32 +02:00
PeertubePlayerManager.onPlayerChange(player)
2019-02-06 10:39:50 +01:00
})
}
2020-01-28 17:29:50 +01:00
private static getVideojsOptions (
mode: PlayerMode,
options: PeertubePlayerManagerOptions,
p2pMediaLoaderModule?: any
2020-04-17 11:20:12 +02:00
): videojs.PlayerOptions {
const commonOptions = options.common
2019-01-29 08:37:25 +01:00
2020-05-11 17:48:25 +02:00
let autoplay = this.getAutoPlayValue(commonOptions.autoplay)
2019-01-24 10:16:30 +01:00
let html5 = {}
const plugins: VideoJSPluginOptions = {
peertube: {
2019-01-29 08:37:25 +01:00
mode,
autoplay, // Use peertube plugin autoplay because we get the file by webtorrent
videoViewUrl: commonOptions.videoViewUrl,
videoDuration: commonOptions.videoDuration,
userWatching: commonOptions.userWatching,
subtitle: commonOptions.subtitle,
2019-03-07 17:06:00 +01:00
videoCaptions: commonOptions.videoCaptions,
stopTime: commonOptions.stopTime
}
}
2019-12-06 17:25:15 +01:00
if (commonOptions.enableHotkeys === true) {
PeertubePlayerManager.addHotkeysOptions(plugins)
}
2019-01-29 08:37:25 +01:00
2019-12-06 17:25:15 +01:00
if (mode === 'p2p-media-loader') {
const { hlsjs } = PeertubePlayerManager.addP2PMediaLoaderOptions(plugins, options, p2pMediaLoaderModule)
html5 = hlsjs.html5
}
2019-02-06 10:39:50 +01:00
if (mode === 'webtorrent') {
2019-12-06 17:25:15 +01:00
PeertubePlayerManager.addWebTorrentOptions(plugins, options)
2019-01-29 08:37:25 +01:00
// WebTorrent plugin handles autoplay, because we do some hackish stuff in there
autoplay = false
}
const videojsOptions = {
2019-01-24 10:16:30 +01:00
html5,
// We don't use text track settings for now
2020-01-28 17:29:50 +01:00
textTrackSettings: false as any, // FIXME: typings
controls: commonOptions.controls !== undefined ? commonOptions.controls : true,
loop: commonOptions.loop !== undefined ? commonOptions.loop : false,
muted: commonOptions.muted !== undefined
? commonOptions.muted
: undefined, // Undefined so the player knows it has to check the local storage
2020-05-11 17:48:25 +02:00
autoplay: this.getAutoPlayValue(autoplay),
2019-12-06 17:25:15 +01:00
poster: commonOptions.poster,
inactivityTimeout: commonOptions.inactivityTimeout,
playbackRates: [ 0.5, 0.75, 1, 1.25, 1.5, 2 ],
2019-12-06 17:25:15 +01:00
plugins,
2019-12-06 17:25:15 +01:00
controlBar: {
children: this.getControlBarChildren(mode, {
captions: commonOptions.captions,
peertubeLink: commonOptions.peertubeLink,
2019-12-19 21:34:45 +01:00
theaterButton: commonOptions.theaterButton,
nextVideo: commonOptions.nextVideo
2020-01-28 17:29:50 +01:00
}) as any // FIXME: typings
}
}
2019-12-06 17:25:15 +01:00
if (commonOptions.language && !isDefaultLocale(commonOptions.language)) {
Object.assign(videojsOptions, { language: commonOptions.language })
}
2019-12-06 17:25:15 +01:00
return videojsOptions
}
2019-12-06 17:25:15 +01:00
private static addP2PMediaLoaderOptions (
plugins: VideoJSPluginOptions,
options: PeertubePlayerManagerOptions,
p2pMediaLoaderModule: any
) {
const p2pMediaLoaderOptions = options.p2pMediaLoader
const commonOptions = options.common
const trackerAnnounce = p2pMediaLoaderOptions.trackerAnnounce
.filter(t => t.startsWith('ws'))
const redundancyUrlManager = new RedundancyUrlManager(options.p2pMediaLoader.redundancyBaseUrls)
const p2pMediaLoader: P2PMediaLoaderPluginOptions = {
redundancyUrlManager,
type: 'application/x-mpegURL',
startTime: commonOptions.startTime,
src: p2pMediaLoaderOptions.playlistUrl
}
let consumeOnly = false
// FIXME: typings
2019-12-09 10:16:58 +01:00
if (navigator && (navigator as any).connection && (navigator as any).connection.type === 'cellular') {
2019-12-06 17:25:15 +01:00
console.log('We are on a cellular connection: disabling seeding.')
consumeOnly = true
}
const p2pMediaLoaderConfig = {
loader: {
trackerAnnounce,
segmentValidator: segmentValidatorFactory(options.p2pMediaLoader.segmentsSha256Url),
rtcConfig: getRtcConfig(),
requiredSegmentsPriority: 5,
segmentUrlBuilder: segmentUrlBuilderFactory(redundancyUrlManager),
useP2P: getStoredP2PEnabled(),
consumeOnly
},
segments: {
swarmId: p2pMediaLoaderOptions.playlistUrl
}
}
const hlsjs = {
2019-12-06 17:25:15 +01:00
levelLabelHandler: (level: { height: number, width: number }) => {
2020-08-03 16:03:52 +02:00
const resolution = Math.min(level.height || 0, level.width || 0)
const file = p2pMediaLoaderOptions.videoFiles.find(f => f.resolution.id === resolution)
if (!file) {
console.error('Cannot find video file for level %d.', level.height)
return level.height
}
2019-12-06 17:25:15 +01:00
let label = file.resolution.label
if (file.fps >= 50) label += file.fps
return label
},
html5: {
hlsjsConfig: {
capLevelToPlayerSize: true,
autoStartLoad: false,
liveSyncDurationCount: 7,
loader: new p2pMediaLoaderModule.Engine(p2pMediaLoaderConfig).createLoaderClass()
}
2019-12-06 17:25:15 +01:00
}
}
const toAssign = { p2pMediaLoader, hlsjs }
2019-12-06 17:25:15 +01:00
Object.assign(plugins, toAssign)
return toAssign
}
private static addWebTorrentOptions (plugins: VideoJSPluginOptions, options: PeertubePlayerManagerOptions) {
const commonOptions = options.common
const webtorrentOptions = options.webtorrent
const webtorrent = {
autoplay: commonOptions.autoplay,
videoDuration: commonOptions.videoDuration,
playerElement: commonOptions.playerElement,
videoFiles: webtorrentOptions.videoFiles,
startTime: commonOptions.startTime
}
2019-12-06 17:25:15 +01:00
Object.assign(plugins, { webtorrent })
}
private static getControlBarChildren (mode: PlayerMode, options: {
peertubeLink: boolean
2019-12-05 17:06:18 +01:00
theaterButton: boolean,
2019-12-19 21:34:45 +01:00
captions: boolean,
nextVideo?: Function
}) {
const settingEntries = []
const loadProgressBar = mode === 'webtorrent' ? 'peerTubeLoadProgressBar' : 'loadProgressBar'
// Keep an order
settingEntries.push('playbackRateMenuButton')
if (options.captions === true) settingEntries.push('captionsButton')
settingEntries.push('resolutionMenuButton')
const children = {
2019-12-19 21:34:45 +01:00
'playToggle': {}
}
if (options.nextVideo) {
Object.assign(children, {
'nextVideoButton': {
handler: options.nextVideo
}
})
}
Object.assign(children, {
'currentTimeDisplay': {},
'timeDivider': {},
'durationDisplay': {},
'liveDisplay': {},
'flexibleWidthSpacer': {},
'progressControl': {
children: {
'seekBar': {
children: {
[loadProgressBar]: {},
'mouseTimeDisplay': {},
'playProgressBar': {}
}
}
}
},
'p2PInfoButton': {},
'muteToggle': {},
'volumeControl': {},
'settingsButton': {
setup: {
maxHeightOffset: 40
},
entries: settingEntries
}
2019-12-19 21:34:45 +01:00
})
if (options.peertubeLink === true) {
Object.assign(children, {
'peerTubeLinkButton': {}
})
}
2019-12-05 17:06:18 +01:00
if (options.theaterButton === true) {
Object.assign(children, {
'theaterButton': {}
})
}
Object.assign(children, {
'fullscreenToggle': {}
})
return children
}
2020-04-17 11:20:12 +02:00
private static addContextMenu (mode: PlayerMode, player: videojs.Player, videoEmbedUrl: string) {
const content = [
{
label: player.localize('Copy the video URL'),
listener: function () {
copyToClipboard(buildVideoLink())
}
},
{
label: player.localize('Copy the video URL at the current time'),
2020-04-17 11:20:12 +02:00
listener: function (this: videojs.Player) {
2020-01-28 17:29:50 +01:00
copyToClipboard(buildVideoLink({ startTime: this.currentTime() }))
}
},
{
label: player.localize('Copy embed code'),
listener: () => {
copyToClipboard(buildVideoEmbed(videoEmbedUrl))
}
}
]
if (mode === 'webtorrent') {
content.push({
label: player.localize('Copy magnet URI'),
2020-04-17 11:20:12 +02:00
listener: function (this: videojs.Player) {
2020-01-28 17:29:50 +01:00
copyToClipboard(this.webtorrent().getCurrentVideoFile().magnetUri)
}
})
}
player.contextmenuUI({ content })
}
2019-12-06 17:25:15 +01:00
private static addHotkeysOptions (plugins: VideoJSPluginOptions) {
Object.assign(plugins, {
hotkeys: {
skipInitialFocus: true,
enableInactiveFocus: false,
captureDocumentHotkeys: true,
documentHotkeysFocusElementFilter: (e: HTMLElement) => {
const tagName = e.tagName.toLowerCase()
return e.id === 'content' || tagName === 'body' || tagName === 'video'
},
2019-12-06 17:25:15 +01:00
enableVolumeScroll: false,
enableModifiersForNumbers: false,
fullscreenKey: function (event: KeyboardEvent) {
// fullscreen with the f key or Ctrl+Enter
return event.key === 'f' || (event.ctrlKey && event.key === 'Enter')
},
seekStep: function (event: KeyboardEvent) {
// mimic VLC seek behavior, and default to 5 (original value is 5).
if (event.ctrlKey && event.altKey) {
return 5 * 60
} else if (event.ctrlKey) {
return 60
} else if (event.altKey) {
return 10
} else {
return 5
}
},
customKeys: {
increasePlaybackRateKey: {
key: function (event: KeyboardEvent) {
return event.key === '>'
},
handler: function (player: videojs.Player) {
2020-01-28 17:29:50 +01:00
const newValue = Math.min(player.playbackRate() + 0.1, 5)
player.playbackRate(parseFloat(newValue.toFixed(2)))
2019-12-06 17:25:15 +01:00
}
},
decreasePlaybackRateKey: {
key: function (event: KeyboardEvent) {
return event.key === '<'
},
handler: function (player: videojs.Player) {
2020-01-28 17:29:50 +01:00
const newValue = Math.max(player.playbackRate() - 0.1, 0.10)
player.playbackRate(parseFloat(newValue.toFixed(2)))
2019-12-06 17:25:15 +01:00
}
},
frameByFrame: {
key: function (event: KeyboardEvent) {
return event.key === '.'
},
handler: function (player: videojs.Player) {
player.pause()
// Calculate movement distance (assuming 30 fps)
const dist = 1 / 30
player.currentTime(player.currentTime() + dist)
}
}
}
}
})
}
2020-05-11 17:20:23 +02:00
2020-05-11 17:48:25 +02:00
private static getAutoPlayValue (autoplay: any) {
if (autoplay !== true) return autoplay
// Giving up with iOS
2020-05-12 10:32:56 +02:00
if (isIOS()) return false
2020-05-11 17:48:25 +02:00
2020-05-11 17:20:23 +02:00
// We have issues with autoplay and Safari.
// any that tries to play using auto mute seems to work
2020-05-12 10:32:56 +02:00
if (isSafari()) return 'any'
2020-05-11 17:20:23 +02:00
return 'play'
}
}
// ############################################################################
export {
videojs
}