diff options
Diffstat (limited to 'client/src/standalone')
-rw-r--r-- | client/src/standalone/videos/embed.ts | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts index a4196600a..1275998b8 100644 --- a/client/src/standalone/videos/embed.ts +++ b/client/src/standalone/videos/embed.ts | |||
@@ -20,9 +20,11 @@ import 'whatwg-fetch' | |||
20 | import * as vjs from 'video.js' | 20 | import * as vjs from 'video.js' |
21 | import * as Channel from 'jschannel' | 21 | import * as Channel from 'jschannel' |
22 | 22 | ||
23 | import { VideoDetails } from '../../../../shared' | 23 | import { ResultList, VideoDetails } from '../../../../shared' |
24 | import { addContextMenu, getVideojsOptions, loadLocale } from '../../assets/player/peertube-player' | 24 | import { addContextMenu, getVideojsOptions, loadLocale } from '../../assets/player/peertube-player' |
25 | import { PeerTubeResolution } from '../player/definitions' | 25 | import { PeerTubeResolution } from '../player/definitions' |
26 | import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings' | ||
27 | import { VideoCaption } from '../../../../shared/models/videos/video-caption.model' | ||
26 | 28 | ||
27 | /** | 29 | /** |
28 | * Embed API exposes control of the embed player to the outside world via | 30 | * Embed API exposes control of the embed player to the outside world via |
@@ -178,6 +180,10 @@ class PeerTubeEmbed { | |||
178 | return fetch(this.getVideoUrl(videoId)) | 180 | return fetch(this.getVideoUrl(videoId)) |
179 | } | 181 | } |
180 | 182 | ||
183 | loadVideoCaptions (videoId: string): Promise<Response> { | ||
184 | return fetch(this.getVideoUrl(videoId) + '/captions') | ||
185 | } | ||
186 | |||
181 | removeElement (element: HTMLElement) { | 187 | removeElement (element: HTMLElement) { |
182 | element.parentElement.removeChild(element) | 188 | element.parentElement.removeChild(element) |
183 | } | 189 | } |
@@ -254,15 +260,27 @@ class PeerTubeEmbed { | |||
254 | const videoId = lastPart.indexOf('?') === -1 ? lastPart : lastPart.split('?')[ 0 ] | 260 | const videoId = lastPart.indexOf('?') === -1 ? lastPart : lastPart.split('?')[ 0 ] |
255 | 261 | ||
256 | await loadLocale(window.location.origin, vjs, navigator.language) | 262 | await loadLocale(window.location.origin, vjs, navigator.language) |
257 | let response = await this.loadVideoInfo(videoId) | 263 | const [ videoResponse, captionsResponse ] = await Promise.all([ |
264 | this.loadVideoInfo(videoId), | ||
265 | this.loadVideoCaptions(videoId) | ||
266 | ]) | ||
258 | 267 | ||
259 | if (!response.ok) { | 268 | if (!videoResponse.ok) { |
260 | if (response.status === 404) return this.videoNotFound(this.videoElement) | 269 | if (videoResponse.status === 404) return this.videoNotFound(this.videoElement) |
261 | 270 | ||
262 | return this.videoFetchError(this.videoElement) | 271 | return this.videoFetchError(this.videoElement) |
263 | } | 272 | } |
264 | 273 | ||
265 | const videoInfo: VideoDetails = await response.json() | 274 | const videoInfo: VideoDetails = await videoResponse.json() |
275 | let videoCaptions: VideoJSCaption[] = [] | ||
276 | if (captionsResponse.ok) { | ||
277 | const { data } = (await captionsResponse.json()) as ResultList<VideoCaption> | ||
278 | videoCaptions = data.map(c => ({ | ||
279 | label: c.language.label, | ||
280 | language: c.language.id, | ||
281 | src: window.location.origin + c.captionPath | ||
282 | })) | ||
283 | } | ||
266 | 284 | ||
267 | this.loadParams() | 285 | this.loadParams() |
268 | 286 | ||
@@ -273,6 +291,7 @@ class PeerTubeEmbed { | |||
273 | loop: this.loop, | 291 | loop: this.loop, |
274 | startTime: this.startTime, | 292 | startTime: this.startTime, |
275 | 293 | ||
294 | videoCaptions, | ||
276 | inactivityTimeout: 1500, | 295 | inactivityTimeout: 1500, |
277 | videoViewUrl: this.getVideoUrl(videoId) + '/views', | 296 | videoViewUrl: this.getVideoUrl(videoId) + '/views', |
278 | playerElement: this.videoElement, | 297 | playerElement: this.videoElement, |
@@ -297,6 +316,7 @@ class PeerTubeEmbed { | |||
297 | } | 316 | } |
298 | 317 | ||
299 | addContextMenu(this.player, window.location.origin + videoInfo.embedPath) | 318 | addContextMenu(this.player, window.location.origin + videoInfo.embedPath) |
319 | |||
300 | this.initializeApi() | 320 | this.initializeApi() |
301 | }) | 321 | }) |
302 | } | 322 | } |