PeerTube/shared/models/videos/video.model.ts

49 lines
996 B
TypeScript
Raw Normal View History

2017-12-06 17:15:59 +01:00
import { Account } from '../accounts'
2017-10-24 19:41:09 +02:00
import { VideoChannel } from './video-channel.model'
2017-10-31 11:52:52 +01:00
import { VideoPrivacy } from './video-privacy.enum'
2017-10-24 19:41:09 +02:00
export interface VideoFile {
magnetUri: string
resolution: number
resolutionLabel: string
size: number // Bytes
torrentUrl: string
fileUrl: string
}
2017-06-10 22:15:25 +02:00
export interface Video {
id: number
uuid: string
2017-12-06 17:15:59 +01:00
accountName: string
createdAt: Date | string
updatedAt: Date | string
2017-06-11 11:02:35 +02:00
categoryLabel: string
category: number
licenceLabel: string
licence: number
languageLabel: string
language: number
description: string
duration: number
isLocal: boolean
name: string
2017-11-15 11:00:25 +01:00
serverHost: string
2017-06-11 11:02:35 +02:00
tags: string[]
thumbnailPath: string
2017-07-12 11:56:02 +02:00
previewPath: string
2017-10-16 10:05:49 +02:00
embedPath: string
2017-06-11 11:02:35 +02:00
views: number
likes: number
dislikes: number
nsfw: boolean
2017-10-24 19:41:09 +02:00
}
export interface VideoDetails extends Video {
2017-10-31 11:52:52 +01:00
privacy: VideoPrivacy
privacyLabel: string
descriptionPath: string
2017-10-24 19:41:09 +02:00
channel: VideoChannel
files: VideoFile[]
2017-12-06 17:15:59 +01:00
account: Account
2017-06-10 22:15:25 +02:00
}