diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts | 1 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.ts | 37 |
2 files changed, 27 insertions, 11 deletions
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index 8d476393f..c77249a02 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts | |||
@@ -213,6 +213,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { | |||
213 | servicesTwitterUsername: this.customConfig.services.twitter.username, | 213 | servicesTwitterUsername: this.customConfig.services.twitter.username, |
214 | servicesTwitterWhitelisted: this.customConfig.services.twitter.whitelisted, | 214 | servicesTwitterWhitelisted: this.customConfig.services.twitter.whitelisted, |
215 | cachePreviewsSize: this.customConfig.cache.previews.size, | 215 | cachePreviewsSize: this.customConfig.cache.previews.size, |
216 | cacheCaptionsSize: this.customConfig.cache.captions.size, | ||
216 | signupEnabled: this.customConfig.signup.enabled, | 217 | signupEnabled: this.customConfig.signup.enabled, |
217 | signupLimit: this.customConfig.signup.limit, | 218 | signupLimit: this.customConfig.signup.limit, |
218 | adminEmail: this.customConfig.admin.email, | 219 | adminEmail: this.customConfig.admin.email, |
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 8adf97d48..601c6a38d 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts | |||
@@ -6,11 +6,11 @@ import { peertubeLocalStorage } from '@app/shared/misc/peertube-local-storage' | |||
6 | import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component' | 6 | import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component' |
7 | import { MetaService } from '@ngx-meta/core' | 7 | import { MetaService } from '@ngx-meta/core' |
8 | import { NotificationsService } from 'angular2-notifications' | 8 | import { NotificationsService } from 'angular2-notifications' |
9 | import { Subscription } from 'rxjs' | 9 | import { forkJoin, Subscription } from 'rxjs' |
10 | import * as videojs from 'video.js' | 10 | import * as videojs from 'video.js' |
11 | import 'videojs-hotkeys' | 11 | import 'videojs-hotkeys' |
12 | import * as WebTorrent from 'webtorrent' | 12 | import * as WebTorrent from 'webtorrent' |
13 | import { UserVideoRateType, VideoPrivacy, VideoRateType, VideoState } from '../../../../../shared' | 13 | import { ResultList, UserVideoRateType, VideoPrivacy, VideoRateType, VideoState } from '../../../../../shared' |
14 | import '../../../assets/player/peertube-videojs-plugin' | 14 | import '../../../assets/player/peertube-videojs-plugin' |
15 | import { AuthService, ConfirmService } from '../../core' | 15 | import { AuthService, ConfirmService } from '../../core' |
16 | import { RestExtractor, VideoBlacklistService } from '../../shared' | 16 | import { RestExtractor, VideoBlacklistService } from '../../shared' |
@@ -26,6 +26,9 @@ import { ServerService } from '@app/core' | |||
26 | import { I18n } from '@ngx-translate/i18n-polyfill' | 26 | import { I18n } from '@ngx-translate/i18n-polyfill' |
27 | import { environment } from '../../../environments/environment' | 27 | import { environment } from '../../../environments/environment' |
28 | import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils' | 28 | import { getDevLocale, isOnDevLocale } from '@app/shared/i18n/i18n-utils' |
29 | import { VideoCaptionService } from '@app/shared/video-caption' | ||
30 | import { VideoCaption } from '../../../../../shared/models/videos/video-caption.model' | ||
31 | import { VideoJSCaption } from '../../../assets/player/peertube-videojs-typings' | ||
29 | 32 | ||
30 | @Component({ | 33 | @Component({ |
31 | selector: 'my-video-watch', | 34 | selector: 'my-video-watch', |
@@ -74,6 +77,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
74 | private markdownService: MarkdownService, | 77 | private markdownService: MarkdownService, |
75 | private zone: NgZone, | 78 | private zone: NgZone, |
76 | private redirectService: RedirectService, | 79 | private redirectService: RedirectService, |
80 | private videoCaptionService: VideoCaptionService, | ||
77 | private i18n: I18n, | 81 | private i18n: I18n, |
78 | @Inject(LOCALE_ID) private localeId: string | 82 | @Inject(LOCALE_ID) private localeId: string |
79 | ) {} | 83 | ) {} |
@@ -109,14 +113,18 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
109 | if (this.player) this.player.pause() | 113 | if (this.player) this.player.pause() |
110 | 114 | ||
111 | // Video did change | 115 | // Video did change |
112 | this.videoService | 116 | forkJoin( |
113 | .getVideo(uuid) | 117 | this.videoService.getVideo(uuid), |
114 | .pipe(catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ]))) | 118 | this.videoCaptionService.listCaptions(uuid) |
115 | .subscribe(video => { | 119 | ) |
116 | const startTime = this.route.snapshot.queryParams.start | 120 | .pipe( |
117 | this.onVideoFetched(video, startTime) | 121 | catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ])) |
118 | .catch(err => this.handleError(err)) | 122 | ) |
119 | }) | 123 | .subscribe(([ video, captionsResult ]) => { |
124 | const startTime = this.route.snapshot.queryParams.start | ||
125 | this.onVideoFetched(video, captionsResult.data, startTime) | ||
126 | .catch(err => this.handleError(err)) | ||
127 | }) | ||
120 | }) | 128 | }) |
121 | } | 129 | } |
122 | 130 | ||
@@ -331,7 +339,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
331 | ) | 339 | ) |
332 | } | 340 | } |
333 | 341 | ||
334 | private async onVideoFetched (video: VideoDetails, startTime = 0) { | 342 | private async onVideoFetched (video: VideoDetails, videoCaptions: VideoCaption[], startTime = 0) { |
335 | this.video = video | 343 | this.video = video |
336 | 344 | ||
337 | // Re init attributes | 345 | // Re init attributes |
@@ -358,10 +366,17 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
358 | this.playerElement.setAttribute('playsinline', 'true') | 366 | this.playerElement.setAttribute('playsinline', 'true') |
359 | playerElementWrapper.appendChild(this.playerElement) | 367 | playerElementWrapper.appendChild(this.playerElement) |
360 | 368 | ||
369 | const playerCaptions = videoCaptions.map(c => ({ | ||
370 | label: c.language.label, | ||
371 | language: c.language.id, | ||
372 | src: environment.apiUrl + c.captionPath | ||
373 | })) | ||
374 | |||
361 | const videojsOptions = getVideojsOptions({ | 375 | const videojsOptions = getVideojsOptions({ |
362 | autoplay: this.isAutoplay(), | 376 | autoplay: this.isAutoplay(), |
363 | inactivityTimeout: 2500, | 377 | inactivityTimeout: 2500, |
364 | videoFiles: this.video.files, | 378 | videoFiles: this.video.files, |
379 | videoCaptions: playerCaptions, | ||
365 | playerElement: this.playerElement, | 380 | playerElement: this.playerElement, |
366 | videoViewUrl: this.video.privacy.id !== VideoPrivacy.PRIVATE ? this.videoService.getVideoViewUrl(this.video.uuid) : null, | 381 | videoViewUrl: this.video.privacy.id !== VideoPrivacy.PRIVATE ? this.videoService.getVideoViewUrl(this.video.uuid) : null, |
367 | videoDuration: this.video.duration, | 382 | videoDuration: this.video.duration, |