]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/models/videos/video-file.model.ts
Handle unavailable videos in embed playlists
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-file.model.ts
CommitLineData
583eb04b
C
1
2import { VideoConstant, VideoFileMetadata, VideoResolution } from '@shared/models'
d7a25329
C
3
4export 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
583eb04b 13 metadata?: VideoFileMetadata
8319d6ae 14 metadataUrl?: string
d7a25329 15}