2017-07-23 14:49:52 +02:00
|
|
|
import './embed.scss'
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
import * as Channel from 'jschannel'
|
2018-03-30 17:40:00 +02:00
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
import { peertubeTranslate, ResultList, ServerConfig, VideoDetails } from '../../../../shared'
|
2018-07-10 18:02:30 +02:00
|
|
|
import { PeerTubeResolution } from '../player/definitions'
|
2018-07-13 18:21:19 +02:00
|
|
|
import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings'
|
2018-08-14 14:59:53 +02:00
|
|
|
import { VideoCaption } from '../../../../shared/models/videos/caption/video-caption.model'
|
2019-01-29 08:37:25 +01:00
|
|
|
import {
|
|
|
|
P2PMediaLoaderOptions,
|
|
|
|
PeertubePlayerManager,
|
|
|
|
PeertubePlayerManagerOptions,
|
|
|
|
PlayerMode
|
|
|
|
} from '../../assets/player/peertube-player-manager'
|
|
|
|
import { VideoStreamingPlaylistType } from '../../../../shared/models/videos/video-streaming-playlist.type'
|
2017-07-23 14:49:52 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
/**
|
2018-07-10 18:02:30 +02:00
|
|
|
* Embed API exposes control of the embed player to the outside world via
|
2018-07-10 17:47:56 +02:00
|
|
|
* JSChannels and window.postMessage
|
|
|
|
*/
|
|
|
|
class PeerTubeEmbedApi {
|
2018-07-10 18:02:30 +02:00
|
|
|
private channel: Channel.MessagingChannel
|
2018-07-10 17:47:56 +02:00
|
|
|
private isReady = false
|
2018-07-10 18:02:30 +02:00
|
|
|
private resolutions: PeerTubeResolution[] = null
|
|
|
|
|
|
|
|
constructor (private embed: PeerTubeEmbed) {
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
initialize () {
|
2018-07-10 17:47:56 +02:00
|
|
|
this.constructChannel()
|
|
|
|
this.setupStateTracking()
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
// We're ready!
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
this.notifyReady()
|
|
|
|
}
|
2018-07-10 18:02:30 +02:00
|
|
|
|
|
|
|
private get element () {
|
2018-07-10 17:47:56 +02:00
|
|
|
return this.embed.videoElement
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private constructChannel () {
|
2019-04-02 18:30:26 +02:00
|
|
|
const channel = Channel.build({ window: window.parent, origin: '*', scope: this.embed.scope })
|
2018-07-10 18:02:30 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
channel.bind('play', (txn, params) => this.embed.player.play())
|
|
|
|
channel.bind('pause', (txn, params) => this.embed.player.pause())
|
|
|
|
channel.bind('seek', (txn, time) => this.embed.player.currentTime(time))
|
|
|
|
channel.bind('setVolume', (txn, value) => this.embed.player.volume(value))
|
|
|
|
channel.bind('getVolume', (txn, value) => this.embed.player.volume())
|
|
|
|
channel.bind('isReady', (txn, params) => this.isReady)
|
|
|
|
channel.bind('setResolution', (txn, resolutionId) => this.setResolution(resolutionId))
|
|
|
|
channel.bind('getResolutions', (txn, params) => this.resolutions)
|
|
|
|
channel.bind('setPlaybackRate', (txn, playbackRate) => this.embed.player.playbackRate(playbackRate))
|
|
|
|
channel.bind('getPlaybackRate', (txn, params) => this.embed.player.playbackRate())
|
|
|
|
channel.bind('getPlaybackRates', (txn, params) => this.embed.playerOptions.playbackRates)
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
this.channel = channel
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private setResolution (resolutionId: number) {
|
2019-01-23 15:36:45 +01:00
|
|
|
if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionForbidden()) return
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
// Auto resolution
|
|
|
|
if (resolutionId === -1) {
|
2019-01-23 15:36:45 +01:00
|
|
|
this.embed.player.webtorrent().enableAutoResolution()
|
2018-07-10 17:47:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
this.embed.player.webtorrent().disableAutoResolution()
|
|
|
|
this.embed.player.webtorrent().updateResolution(resolutionId)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Let the host know that we're ready to go!
|
|
|
|
*/
|
2018-07-10 18:02:30 +02:00
|
|
|
private notifyReady () {
|
2018-07-10 17:47:56 +02:00
|
|
|
this.isReady = true
|
|
|
|
this.channel.notify({ method: 'ready', params: true })
|
|
|
|
}
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private setupStateTracking () {
|
|
|
|
let currentState: 'playing' | 'paused' | 'unstarted' = 'unstarted'
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
setInterval(() => {
|
2019-04-02 18:30:26 +02:00
|
|
|
const position = this.element.currentTime
|
|
|
|
const volume = this.element.volume
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
this.channel.notify({
|
|
|
|
method: 'playbackStatusUpdate',
|
|
|
|
params: {
|
|
|
|
position,
|
|
|
|
volume,
|
2018-07-10 18:02:30 +02:00
|
|
|
playbackState: currentState
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}, 500)
|
|
|
|
|
|
|
|
this.element.addEventListener('play', ev => {
|
|
|
|
currentState = 'playing'
|
|
|
|
this.channel.notify({ method: 'playbackStatusChange', params: 'playing' })
|
|
|
|
})
|
|
|
|
|
|
|
|
this.element.addEventListener('pause', ev => {
|
|
|
|
currentState = 'paused'
|
|
|
|
this.channel.notify({ method: 'playbackStatusChange', params: 'paused' })
|
|
|
|
})
|
|
|
|
|
|
|
|
// PeerTube specific capabilities
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
if (this.embed.player.webtorrent) {
|
|
|
|
this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions())
|
|
|
|
this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions())
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
private loadWebTorrentResolutions () {
|
2019-04-02 18:30:26 +02:00
|
|
|
const resolutions = []
|
|
|
|
const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId()
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
for (const videoFile of this.embed.player.webtorrent().videoFiles) {
|
2018-07-10 17:47:56 +02:00
|
|
|
let label = videoFile.resolution.label
|
|
|
|
if (videoFile.fps && videoFile.fps >= 50) {
|
|
|
|
label += videoFile.fps
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
resolutions.push({
|
|
|
|
id: videoFile.resolution.id,
|
|
|
|
label,
|
|
|
|
src: videoFile.magnetUri,
|
|
|
|
active: videoFile.resolution.id === currentResolutionId
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
this.resolutions = resolutions
|
|
|
|
this.channel.notify({
|
|
|
|
method: 'resolutionUpdate',
|
|
|
|
params: this.resolutions
|
|
|
|
})
|
|
|
|
}
|
2017-07-23 14:49:52 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
class PeerTubeEmbed {
|
2018-07-10 18:02:30 +02:00
|
|
|
videoElement: HTMLVideoElement
|
|
|
|
player: any
|
|
|
|
playerOptions: any
|
|
|
|
api: PeerTubeEmbedApi = null
|
2018-12-17 14:14:54 +01:00
|
|
|
autoplay: boolean
|
|
|
|
controls: boolean
|
|
|
|
muted: boolean
|
|
|
|
loop: boolean
|
|
|
|
subtitle: string
|
2018-07-10 18:02:30 +02:00
|
|
|
enableApi = false
|
2018-07-16 16:13:35 +02:00
|
|
|
startTime: number | string = 0
|
2019-03-07 17:06:00 +01:00
|
|
|
stopTime: number | string
|
2019-01-24 10:16:30 +01:00
|
|
|
mode: PlayerMode
|
2018-07-10 18:02:30 +02:00
|
|
|
scope = 'peertube'
|
|
|
|
|
|
|
|
static async main () {
|
2018-03-30 17:40:00 +02:00
|
|
|
const videoContainerId = 'video-container'
|
2018-07-10 17:47:56 +02:00
|
|
|
const embed = new PeerTubeEmbed(videoContainerId)
|
|
|
|
await embed.init()
|
|
|
|
}
|
2018-07-10 18:02:30 +02:00
|
|
|
|
|
|
|
constructor (private videoContainerId: string) {
|
|
|
|
this.videoElement = document.getElementById(videoContainerId) as HTMLVideoElement
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
getVideoUrl (id: string) {
|
|
|
|
return window.location.origin + '/api/v1/videos/' + id
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
loadVideoInfo (videoId: string): Promise<Response> {
|
|
|
|
return fetch(this.getVideoUrl(videoId))
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
loadVideoCaptions (videoId: string): Promise<Response> {
|
|
|
|
return fetch(this.getVideoUrl(videoId) + '/captions')
|
|
|
|
}
|
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
loadConfig (): Promise<Response> {
|
|
|
|
return fetch('/api/v1/config')
|
|
|
|
}
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
removeElement (element: HTMLElement) {
|
|
|
|
element.parentElement.removeChild(element)
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
displayError (text: string, translations?: { [ id: string ]: string }) {
|
2018-07-10 17:47:56 +02:00
|
|
|
// Remove video element
|
2018-07-16 19:15:20 +02:00
|
|
|
if (this.videoElement) this.removeElement(this.videoElement)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
const translatedText = peertubeTranslate(text, translations)
|
|
|
|
const translatedSorry = peertubeTranslate('Sorry', translations)
|
|
|
|
|
|
|
|
document.title = translatedSorry + ' - ' + translatedText
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
const errorBlock = document.getElementById('error-block')
|
|
|
|
errorBlock.style.display = 'flex'
|
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
const errorTitle = document.getElementById('error-title')
|
|
|
|
errorTitle.innerHTML = peertubeTranslate('Sorry', translations)
|
|
|
|
|
2018-07-10 17:47:56 +02:00
|
|
|
const errorText = document.getElementById('error-content')
|
2019-01-14 17:45:02 +01:00
|
|
|
errorText.innerHTML = translatedText
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
videoNotFound (translations?: { [ id: string ]: string }) {
|
2018-07-10 17:47:56 +02:00
|
|
|
const text = 'This video does not exist.'
|
2019-01-14 17:45:02 +01:00
|
|
|
this.displayError(text, translations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
videoFetchError (translations?: { [ id: string ]: string }) {
|
2018-07-10 17:47:56 +02:00
|
|
|
const text = 'We cannot fetch the video. Please try again later.'
|
2019-01-14 17:45:02 +01:00
|
|
|
this.displayError(text, translations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
getParamToggle (params: URLSearchParams, name: string, defaultValue?: boolean) {
|
2018-07-10 17:47:56 +02:00
|
|
|
return params.has(name) ? (params.get(name) === '1' || params.get(name) === 'true') : defaultValue
|
|
|
|
}
|
2018-04-19 18:06:59 +02:00
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
getParamString (params: URLSearchParams, name: string, defaultValue?: string) {
|
2018-07-10 17:47:56 +02:00
|
|
|
return params.has(name) ? params.get(name) : defaultValue
|
|
|
|
}
|
2018-03-27 10:34:40 +02:00
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
async init () {
|
2018-07-10 17:47:56 +02:00
|
|
|
try {
|
|
|
|
await this.initCore()
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private initializeApi () {
|
|
|
|
if (!this.enableApi) return
|
|
|
|
|
|
|
|
this.api = new PeerTubeEmbedApi(this)
|
|
|
|
this.api.initialize()
|
|
|
|
}
|
|
|
|
|
|
|
|
private loadParams () {
|
2018-03-27 10:34:40 +02:00
|
|
|
try {
|
2019-04-02 18:30:26 +02:00
|
|
|
const params = new URL(window.location.toString()).searchParams
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
this.autoplay = this.getParamToggle(params, 'autoplay', false)
|
|
|
|
this.controls = this.getParamToggle(params, 'controls', true)
|
|
|
|
this.muted = this.getParamToggle(params, 'muted', false)
|
|
|
|
this.loop = this.getParamToggle(params, 'loop', false)
|
2018-07-10 17:47:56 +02:00
|
|
|
this.enableApi = this.getParamToggle(params, 'api', this.enableApi)
|
2018-04-05 17:06:59 +02:00
|
|
|
|
2018-12-17 14:14:54 +01:00
|
|
|
this.scope = this.getParamString(params, 'scope', this.scope)
|
|
|
|
this.subtitle = this.getParamString(params, 'subtitle')
|
|
|
|
this.startTime = this.getParamString(params, 'start')
|
2019-03-07 17:06:00 +01:00
|
|
|
this.stopTime = this.getParamString(params, 'stop')
|
2019-01-24 10:16:30 +01:00
|
|
|
|
2019-02-07 15:56:17 +01:00
|
|
|
this.mode = this.getParamString(params, 'mode') === 'p2p-media-loader' ? 'p2p-media-loader' : 'webtorrent'
|
2018-03-27 10:34:40 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error('Cannot get params from URL.', err)
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 18:02:30 +02:00
|
|
|
private async initCore () {
|
2018-11-15 16:57:59 +01:00
|
|
|
const urlParts = window.location.pathname.split('/')
|
|
|
|
const videoId = urlParts[ urlParts.length - 1 ]
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-04-10 09:23:18 +02:00
|
|
|
const [ serverTranslations, videoResponse, captionsResponse, configResponse ] = await Promise.all([
|
2019-01-23 15:36:45 +01:00
|
|
|
PeertubePlayerManager.getServerTranslations(window.location.origin, navigator.language),
|
2018-07-13 18:21:19 +02:00
|
|
|
this.loadVideoInfo(videoId),
|
2019-04-10 09:23:18 +02:00
|
|
|
this.loadVideoCaptions(videoId),
|
|
|
|
this.loadConfig()
|
2018-07-13 18:21:19 +02:00
|
|
|
])
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
if (!videoResponse.ok) {
|
2019-01-14 17:45:02 +01:00
|
|
|
if (videoResponse.status === 404) return this.videoNotFound(serverTranslations)
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
return this.videoFetchError(serverTranslations)
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
2018-07-13 18:21:19 +02:00
|
|
|
const videoInfo: VideoDetails = await videoResponse.json()
|
|
|
|
let videoCaptions: VideoJSCaption[] = []
|
|
|
|
if (captionsResponse.ok) {
|
|
|
|
const { data } = (await captionsResponse.json()) as ResultList<VideoCaption>
|
|
|
|
videoCaptions = data.map(c => ({
|
2018-08-16 10:48:35 +02:00
|
|
|
label: peertubeTranslate(c.language.label, serverTranslations),
|
2018-07-13 18:21:19 +02:00
|
|
|
language: c.language.id,
|
|
|
|
src: window.location.origin + c.captionPath
|
|
|
|
}))
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
|
|
|
|
this.loadParams()
|
2018-03-27 10:34:40 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
const options: PeertubePlayerManagerOptions = {
|
|
|
|
common: {
|
|
|
|
autoplay: this.autoplay,
|
|
|
|
controls: this.controls,
|
|
|
|
muted: this.muted,
|
|
|
|
loop: this.loop,
|
|
|
|
captions: videoCaptions.length !== 0,
|
|
|
|
startTime: this.startTime,
|
2019-03-07 17:06:00 +01:00
|
|
|
stopTime: this.stopTime,
|
2019-01-23 15:36:45 +01:00
|
|
|
subtitle: this.subtitle,
|
|
|
|
|
|
|
|
videoCaptions,
|
|
|
|
inactivityTimeout: 1500,
|
|
|
|
videoViewUrl: this.getVideoUrl(videoId) + '/views',
|
2019-02-06 10:39:50 +01:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
playerElement: this.videoElement,
|
2019-02-06 10:39:50 +01:00
|
|
|
onPlayerElementChange: (element: HTMLVideoElement) => this.videoElement = element,
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
videoDuration: videoInfo.duration,
|
|
|
|
enableHotkeys: true,
|
|
|
|
peertubeLink: true,
|
|
|
|
poster: window.location.origin + videoInfo.previewPath,
|
|
|
|
theaterMode: false,
|
|
|
|
|
|
|
|
serverUrl: window.location.origin,
|
|
|
|
language: navigator.language,
|
|
|
|
embedUrl: window.location.origin + videoInfo.embedPath
|
2019-02-06 10:39:50 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
webtorrent: {
|
|
|
|
videoFiles: videoInfo.files
|
2019-01-23 15:36:45 +01:00
|
|
|
}
|
2019-01-24 10:16:30 +01:00
|
|
|
}
|
2019-01-23 15:36:45 +01:00
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
if (this.mode === 'p2p-media-loader') {
|
2019-01-29 08:37:25 +01:00
|
|
|
const hlsPlaylist = videoInfo.streamingPlaylists.find(p => p.type === VideoStreamingPlaylistType.HLS)
|
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
Object.assign(options, {
|
|
|
|
p2pMediaLoader: {
|
2019-01-29 08:37:25 +01:00
|
|
|
playlistUrl: hlsPlaylist.playlistUrl,
|
|
|
|
segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
|
|
|
|
redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
|
|
|
|
trackerAnnounce: videoInfo.trackerUrls,
|
|
|
|
videoFiles: videoInfo.files
|
|
|
|
} as P2PMediaLoaderOptions
|
2019-01-24 10:16:30 +01:00
|
|
|
})
|
2019-01-23 15:36:45 +01:00
|
|
|
}
|
2017-07-23 14:49:52 +02:00
|
|
|
|
2019-01-24 10:16:30 +01:00
|
|
|
this.player = await PeertubePlayerManager.initialize(this.mode, options)
|
2018-06-06 14:23:40 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
this.player.on('customError', (event: any, data: any) => this.handleError(data.err, serverTranslations))
|
2018-07-10 17:47:56 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
window[ 'videojsPlayer' ] = this.player
|
2018-07-10 18:02:30 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
if (this.controls) {
|
2019-04-10 09:23:18 +02:00
|
|
|
const config: ServerConfig = await configResponse.json()
|
|
|
|
const description = config.tracker.enabled
|
|
|
|
? '<span class="text">' + this.player.localize('Uses P2P, others may know your IP is downloading this video.') + '</span>'
|
|
|
|
: undefined
|
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
this.player.dock({
|
|
|
|
title: videoInfo.name,
|
2019-04-10 09:23:18 +02:00
|
|
|
description
|
2019-01-23 15:36:45 +01:00
|
|
|
})
|
|
|
|
}
|
2018-07-13 18:21:19 +02:00
|
|
|
|
2019-01-23 15:36:45 +01:00
|
|
|
this.initializeApi()
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
2018-07-16 19:15:20 +02:00
|
|
|
|
2019-01-14 17:45:02 +01:00
|
|
|
private handleError (err: Error, translations?: { [ id: string ]: string }) {
|
2018-07-17 14:44:19 +02:00
|
|
|
if (err.message.indexOf('from xs param') !== -1) {
|
2018-07-16 19:15:20 +02:00
|
|
|
this.player.dispose()
|
|
|
|
this.videoElement = null
|
2019-01-14 17:45:02 +01:00
|
|
|
this.displayError('This video is not available because the remote instance is not responding.', translations)
|
2018-07-16 19:15:20 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2018-07-10 17:47:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
PeerTubeEmbed.main()
|
2018-07-10 18:02:30 +02:00
|
|
|
.catch(err => console.error('Cannot init embed.', err))
|