]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-file.model.ts
Bumped to version v2.4.0-rc.1
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-file.model.ts
1
2 import { VideoConstant, VideoFileMetadata, VideoResolution } from '@shared/models'
3
4 export interface VideoFile {
5 magnetUri: string
6 resolution: VideoConstant<VideoResolution>
7 size: number // Bytes
8 torrentUrl: string
9 torrentDownloadUrl: string
10 fileUrl: string
11 fileDownloadUrl: string
12 fps: number
13 metadata?: VideoFileMetadata
14 metadataUrl?: string
15 }