]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-file.model.ts
add support for 1440p (Quad HD/QHD/WQHD) videos
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-file.model.ts
CommitLineData
0fecf427
C
1import { VideoConstant } from './video-constant.model'
2import { VideoFileMetadata } from './video-file-metadata'
3import { VideoResolution } from './video-resolution.enum'
d7a25329
C
4
5export interface VideoFile {
6 magnetUri: string
7 resolution: VideoConstant<VideoResolution>
8 size: number // Bytes
9 torrentUrl: string
10 torrentDownloadUrl: string
11 fileUrl: string
12 fileDownloadUrl: string
13 fps: number
583eb04b 14 metadata?: VideoFileMetadata
8319d6ae 15 metadataUrl?: string
d7a25329 16}