2020-08-27 03:58:27 -04:00
|
|
|
import { VideoConstant } from './video-constant.model'
|
|
|
|
import { VideoFileMetadata } from './video-file-metadata'
|
|
|
|
import { VideoResolution } from './video-resolution.enum'
|
2019-11-15 09:06:03 -05:00
|
|
|
|
|
|
|
export interface VideoFile {
|
|
|
|
resolution: VideoConstant<VideoResolution>
|
|
|
|
size: number // Bytes
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
torrentUrl: string
|
|
|
|
torrentDownloadUrl: string
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
fileUrl: string
|
|
|
|
fileDownloadUrl: string
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
fps: number
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2020-06-26 02:37:26 -04:00
|
|
|
metadata?: VideoFileMetadata
|
2020-03-10 09:39:40 -04:00
|
|
|
metadataUrl?: string
|
2021-02-16 10:25:53 -05:00
|
|
|
|
2021-02-18 05:22:35 -05:00
|
|
|
magnetUri: string | null
|
2019-11-15 09:06:03 -05:00
|
|
|
}
|