1
0
Fork 0
peertube/shared/models/videos/video-file.model.ts

17 lines
454 B
TypeScript
Raw Normal View History

import { VideoConstant } from './video-constant.model'
import { VideoFileMetadata } from './video-file-metadata'
import { VideoResolution } from './video-resolution.enum'
export interface VideoFile {
magnetUri: string
resolution: VideoConstant<VideoResolution>
size: number // Bytes
torrentUrl: string
torrentDownloadUrl: string
fileUrl: string
fileDownloadUrl: string
fps: number
2020-06-26 06:37:26 +00:00
metadata?: VideoFileMetadata
metadataUrl?: string
}