PeerTube/client/src/assets/player/peertube-videojs-typings.ts

210 lines
4.0 KiB
TypeScript
Raw Normal View History

2020-08-04 11:42:06 +02:00
import { Config, Level } from 'hls.js'
import videojs from 'video.js'
2020-08-05 09:44:58 +02:00
import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models'
2019-01-29 08:37:25 +01:00
import { P2pMediaLoaderPlugin } from './p2p-media-loader/p2p-media-loader-plugin'
2019-08-23 10:19:44 +02:00
import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager'
2020-08-04 11:42:06 +02:00
import { PlayerMode } from './peertube-player-manager'
import { PeerTubePlugin } from './peertube-plugin'
2020-08-05 09:44:58 +02:00
import { PlaylistPlugin } from './playlist/playlist-plugin'
2020-08-04 11:42:06 +02:00
import { EndCardOptions } from './upnext/end-card'
import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin'
2020-01-28 17:29:50 +01:00
declare module 'video.js' {
2020-01-28 17:29:50 +01:00
export interface VideoJsPlayer {
srOptions_: HlsjsConfigHandlerOptions
2020-01-28 17:29:50 +01:00
theaterEnabled: boolean
// FIXME: add it to upstream typings
posterImage: {
show (): void
hide (): void
}
handleTechSeeked_ (): void
// Plugins
peertube (): PeerTubePlugin
webtorrent (): WebTorrentPlugin
2019-01-29 08:37:25 +01:00
p2pMediaLoader (): P2pMediaLoaderPlugin
2020-01-28 17:29:50 +01:00
contextmenuUI (options: any): any
bezels (): void
qualityLevels (): QualityLevels
2020-01-28 17:29:50 +01:00
textTracks (): TextTrackList & {
on: Function
2020-05-06 11:54:33 +02:00
tracks_: (TextTrack & { id: string, label: string, src: string })[]
2020-01-28 17:29:50 +01:00
}
2020-02-03 13:33:42 +01:00
dock (options: { title: string, description: string }): void
2020-08-04 11:42:06 +02:00
upnext (options: Partial<EndCardOptions>): void
2020-08-05 09:44:58 +02:00
playlist (): PlaylistPlugin
2020-01-28 17:29:50 +01:00
}
}
export interface VideoJSTechHLS extends videojs.Tech {
hlsProvider: any // FIXME: typings
}
export interface HlsjsConfigHandlerOptions {
hlsjsConfig?: Config & { cueHandler: any }// FIXME: typings
captionConfig?: any // FIXME: typings
levelLabelHandler?: (level: Level) => string
}
type QualityLevelRepresentation = {
id: number
height: number
label?: string
width?: number
bandwidth?: number
bitrate?: number
enabled?: Function
_enabled: boolean
}
type QualityLevels = QualityLevelRepresentation[] & {
selectedIndex: number
selectedIndex_: number
addQualityLevel (representation: QualityLevelRepresentation): void
}
2018-07-13 18:21:19 +02:00
type VideoJSCaption = {
label: string
language: string
src: string
}
2018-10-05 11:15:06 +02:00
type UserWatching = {
url: string,
authorizationHeader: string
}
type PeerTubePluginOptions = {
2019-01-29 08:37:25 +01:00
mode: PlayerMode
autoplay: boolean
videoViewUrl: string
videoDuration: number
2018-10-05 11:15:06 +02:00
userWatching?: UserWatching
subtitle?: string
videoCaptions: VideoJSCaption[]
2019-03-07 17:06:00 +01:00
stopTime: number | string
}
2020-08-05 09:44:58 +02:00
type PlaylistPluginOptions = {
elements: VideoPlaylistElement[]
playlist: VideoPlaylist
getCurrentPosition: () => number
onItemClicked: (element: VideoPlaylistElement) => void
}
type WebtorrentPluginOptions = {
playerElement: HTMLVideoElement
autoplay: boolean
videoDuration: number
videoFiles: VideoFile[]
2019-03-07 17:06:00 +01:00
startTime: number | string
}
type P2PMediaLoaderPluginOptions = {
2019-08-23 10:19:44 +02:00
redundancyUrlManager: RedundancyUrlManager
type: string
src: string
2019-03-07 17:06:00 +01:00
startTime: number | string
}
type VideoJSPluginOptions = {
2020-08-05 09:44:58 +02:00
playlist?: PlaylistPluginOptions
peertube: PeerTubePluginOptions
webtorrent?: WebtorrentPluginOptions
p2pMediaLoader?: P2PMediaLoaderPluginOptions
}
type LoadedQualityData = {
qualitySwitchCallback: Function,
qualityData: {
video: {
id: number
label: string
selected: boolean
}[]
}
}
type ResolutionUpdateData = {
auto: boolean,
resolutionId: number
2019-01-24 10:16:30 +01:00
id?: number
}
type AutoResolutionUpdateData = {
possible: boolean
}
2019-01-24 10:16:30 +01:00
type PlayerNetworkInfo = {
2019-01-29 08:37:25 +01:00
http: {
downloadSpeed: number
uploadSpeed: number
downloaded: number
uploaded: number
}
2019-01-24 10:16:30 +01:00
p2p: {
downloadSpeed: number
uploadSpeed: number
downloaded: number
uploaded: number
numPeers: number
}
}
2020-08-05 09:44:58 +02:00
type PlaylistItemOptions = {
element: VideoPlaylistElement
onClicked: Function
}
export {
2019-01-24 10:16:30 +01:00
PlayerNetworkInfo,
2020-08-05 09:44:58 +02:00
PlaylistItemOptions,
ResolutionUpdateData,
AutoResolutionUpdateData,
2020-08-05 09:44:58 +02:00
PlaylistPluginOptions,
2018-10-05 11:15:06 +02:00
VideoJSCaption,
UserWatching,
PeerTubePluginOptions,
WebtorrentPluginOptions,
P2PMediaLoaderPluginOptions,
VideoJSPluginOptions,
LoadedQualityData,
QualityLevelRepresentation,
QualityLevels
}