1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { VideoConstant, VideoFileMetadata, VideoResolution } from '@shared/models' export interface VideoFile { magnetUri: string resolution: VideoConstant<VideoResolution> size: number // Bytes torrentUrl: string torrentDownloadUrl: string fileUrl: string fileDownloadUrl: string fps: number metadata?: VideoFileMetadata metadataUrl?: string }