X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fshared-video-miniature%2Fvideo-download.component.ts;h=1e3745d94e3a5cf6418bf575740e2cc104104a9d;hb=c6bfbaebe759caa679f23674fed2ba5c9aee5217;hp=21df8b674bd94b89092bc352c0b85c199ffc9ecc;hpb=67ed6552b831df66713bac9e672738796128d33f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts index 21df8b674..1e3745d94 100644 --- a/client/src/app/shared/shared-video-miniature/video-download.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts @@ -1,12 +1,11 @@ -import { FfprobeFormat, FfprobeStream } from 'fluent-ffmpeg' import { mapValues, pick } from 'lodash-es' -import { BytesPipe } from 'ngx-pipes' -import { Component, ElementRef, ViewChild } from '@angular/core' -import { AuthService, Notifier } from '@app/core' -import { NgbActiveModal, NgbModal } from '@ng-bootstrap/ng-bootstrap' -import { I18n } from '@ngx-translate/i18n-polyfill' +import { pipe } from 'rxjs' +import { tap } from 'rxjs/operators' +import { Component, ElementRef, Inject, LOCALE_ID, ViewChild } from '@angular/core' +import { AuthService, HooksService, Notifier } from '@app/core' +import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' import { VideoCaption, VideoFile, VideoPrivacy } from '@shared/models' -import { NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' +import { BytesPipe, NumberFormatterPipe, VideoDetails, VideoService } from '../shared-main' type DownloadType = 'video' | 'subtitles' type FileMetadata = { [key: string]: { label: string, value: string }} @@ -19,7 +18,7 @@ type FileMetadata = { [key: string]: { label: string, value: string }} export class VideoDownloadComponent { @ViewChild('modal', { static: true }) modal: ElementRef - downloadType: 'direct' | 'torrent' = 'torrent' + downloadType: 'direct' | 'torrent' = 'direct' resolutionId: number | string = -1 subtitleLanguageId: string @@ -29,7 +28,9 @@ export class VideoDownloadComponent { videoFileMetadataVideoStream: FileMetadata | undefined videoFileMetadataAudioStream: FileMetadata | undefined videoCaptions: VideoCaption[] - activeModal: NgbActiveModal + activeModal: NgbModalRef + + isAdvancedCustomizationCollapsed = true type: DownloadType = 'video' @@ -37,20 +38,21 @@ export class VideoDownloadComponent { private numbersPipe: NumberFormatterPipe constructor ( + @Inject(LOCALE_ID) private localeId: string, private notifier: Notifier, private modalService: NgbModal, private videoService: VideoService, private auth: AuthService, - private i18n: I18n + private hooks: HooksService ) { this.bytesPipe = new BytesPipe() - this.numbersPipe = new NumberFormatterPipe() + this.numbersPipe = new NumberFormatterPipe(this.localeId) } get typeText () { return this.type === 'video' - ? this.i18n('video') - : this.i18n('subtitles') + ? $localize`video` + : $localize`subtitles` } getVideoFiles () { @@ -65,9 +67,13 @@ export class VideoDownloadComponent { this.activeModal = this.modalService.open(this.modal, { centered: true }) - this.resolutionId = this.getVideoFiles()[0].resolution.id - this.onResolutionIdChange() + this.onResolutionIdChange(this.getVideoFiles()[0].resolution.id) + if (this.videoCaptions) this.subtitleLanguageId = this.videoCaptions[0].language.id + + this.activeModal.shown.subscribe(() => { + this.hooks.runAction('action:modal.video-download.shown', 'common') + }) } onClose () { @@ -86,11 +92,15 @@ export class VideoDownloadComponent { : this.getVideoFileLink() } - async onResolutionIdChange () { + async onResolutionIdChange (resolutionId: number) { + this.resolutionId = resolutionId this.videoFile = this.getVideoFile() - if (this.videoFile.metadata || !this.videoFile.metadataUrl) return - await this.hydrateMetadataFromMetadataUrl(this.videoFile) + if (!this.videoFile.metadata) { + if (!this.videoFile.metadataUrl) return + + await this.hydrateMetadataFromMetadataUrl(this.videoFile) + } this.videoFileMetadataFormat = this.videoFile ? this.getMetadataFormat(this.videoFile.metadata.format) @@ -104,9 +114,6 @@ export class VideoDownloadComponent { } getVideoFile () { - // HTML select send us a string, so convert it to a number - this.resolutionId = parseInt(this.resolutionId.toString(), 10) - const file = this.getVideoFiles().find(f => f.resolution.id === this.resolutionId) if (!file) { console.error('Could not find file with resolution %d.', this.resolutionId) @@ -119,7 +126,7 @@ export class VideoDownloadComponent { const file = this.videoFile if (!file) return - const suffix = this.video.privacy.id === VideoPrivacy.PRIVATE || this.video.privacy.id === VideoPrivacy.INTERNAL + const suffix = this.isConfidentialVideo() ? '?access_token=' + this.auth.getAccessToken() : '' @@ -132,25 +139,29 @@ export class VideoDownloadComponent { } } + isConfidentialVideo () { + return this.video.privacy.id === VideoPrivacy.PRIVATE || this.video.privacy.id === VideoPrivacy.INTERNAL + } + getSubtitlesLink () { return window.location.origin + this.videoCaptions.find(caption => caption.language.id === this.subtitleLanguageId).captionPath } activateCopiedMessage () { - this.notifier.success(this.i18n('Copied')) + this.notifier.success($localize`Copied`) } switchToType (type: DownloadType) { this.type = type } - getMetadataFormat (format: FfprobeFormat) { + getMetadataFormat (format: any) { const keyToTranslateFunction = { - 'encoder': (value: string) => ({ label: this.i18n('Encoder'), value }), - 'format_long_name': (value: string) => ({ label: this.i18n('Format name'), value }), - 'size': (value: number) => ({ label: this.i18n('Size'), value: this.bytesPipe.transform(value, 2) }), + 'encoder': (value: string) => ({ label: $localize`Encoder`, value }), + 'format_long_name': (value: string) => ({ label: $localize`Format name`, value }), + 'size': (value: number) => ({ label: $localize`Size`, value: this.bytesPipe.transform(value, 2) }), 'bit_rate': (value: number) => ({ - label: this.i18n('Bitrate'), + label: $localize`Bitrate`, value: `${this.numbersPipe.transform(value)}bps` }) } @@ -165,30 +176,30 @@ export class VideoDownloadComponent { ) } - getMetadataStream (streams: FfprobeStream[], type: 'video' | 'audio') { + getMetadataStream (streams: any[], type: 'video' | 'audio') { const stream = streams.find(s => s.codec_type === type) if (!stream) return undefined let keyToTranslateFunction = { - 'codec_long_name': (value: string) => ({ label: this.i18n('Codec'), value }), - 'profile': (value: string) => ({ label: this.i18n('Profile'), value }), + 'codec_long_name': (value: string) => ({ label: $localize`Codec`, value }), + 'profile': (value: string) => ({ label: $localize`Profile`, value }), 'bit_rate': (value: number) => ({ - label: this.i18n('Bitrate'), + label: $localize`Bitrate`, value: `${this.numbersPipe.transform(value)}bps` }) } if (type === 'video') { keyToTranslateFunction = Object.assign(keyToTranslateFunction, { - 'width': (value: number) => ({ label: this.i18n('Resolution'), value: `${value}x${stream.height}` }), - 'display_aspect_ratio': (value: string) => ({ label: this.i18n('Aspect ratio'), value }), - 'avg_frame_rate': (value: string) => ({ label: this.i18n('Average frame rate'), value }), - 'pix_fmt': (value: string) => ({ label: this.i18n('Pixel format'), value }) + 'width': (value: number) => ({ label: $localize`Resolution`, value: `${value}x${stream.height}` }), + 'display_aspect_ratio': (value: string) => ({ label: $localize`Aspect ratio`, value }), + 'avg_frame_rate': (value: string) => ({ label: $localize`Average frame rate`, value }), + 'pix_fmt': (value: string) => ({ label: $localize`Pixel format`, value }) }) } else { keyToTranslateFunction = Object.assign(keyToTranslateFunction, { - 'sample_rate': (value: number) => ({ label: this.i18n('Sample rate'), value }), - 'channel_layout': (value: number) => ({ label: this.i18n('Channel Layout'), value }) + 'sample_rate': (value: number) => ({ label: $localize`Sample rate`, value }), + 'channel_layout': (value: number) => ({ label: $localize`Channel Layout`, value }) }) } @@ -200,7 +211,8 @@ export class VideoDownloadComponent { private hydrateMetadataFromMetadataUrl (file: VideoFile) { const observable = this.videoService.getVideoFileMetadata(file.metadataUrl) - observable.subscribe(res => file.metadata = res) + .pipe(tap(res => file.metadata = res)) + return observable.toPromise() } }