1
0
Fork 0
peertube/client/src/assets/player/peertube-videojs-typings.ts

235 lines
4.6 KiB
TypeScript
Raw Normal View History

2021-08-03 09:51:49 +00:00
import { HlsConfig, Level } from 'hls.js'
2020-08-04 09:42:06 +00:00
import videojs from 'video.js'
2020-08-05 07:44:58 +00:00
import { VideoFile, VideoPlaylist, VideoPlaylistElement } from '@shared/models'
2019-01-29 07:37:25 +00:00
import { P2pMediaLoaderPlugin } from './p2p-media-loader/p2p-media-loader-plugin'
2019-08-23 08:19:44 +00:00
import { RedundancyUrlManager } from './p2p-media-loader/redundancy-url-manager'
2020-08-04 09:42:06 +00:00
import { PlayerMode } from './peertube-player-manager'
import { PeerTubePlugin } from './peertube-plugin'
2020-08-05 07:44:58 +00:00
import { PlaylistPlugin } from './playlist/playlist-plugin'
2020-08-04 09:42:06 +00:00
import { EndCardOptions } from './upnext/end-card'
2021-04-12 08:26:30 +00:00
import { StatsCardOptions } from './stats/stats-card'
2020-08-04 09:42:06 +00:00
import { WebTorrentPlugin } from './webtorrent/webtorrent-plugin'
2021-04-27 13:50:29 +00:00
import { StatsForNerdsPlugin } from './stats/stats-plugin'
2020-01-28 16:29:50 +00:00
declare module 'video.js' {
2020-01-28 16:29:50 +00:00
export interface VideoJsPlayer {
srOptions_: HlsjsConfigHandlerOptions
2020-01-28 16:29:50 +00:00
theaterEnabled: boolean
// FIXME: add it to upstream typings
posterImage: {
show (): void
hide (): void
}
handleTechSeeked_ (): void
// Plugins
peertube (): PeerTubePlugin
webtorrent (): WebTorrentPlugin
2019-01-29 07:37:25 +00:00
p2pMediaLoader (): P2pMediaLoaderPlugin
2020-01-28 16:29:50 +00:00
contextmenuUI (options: any): any
bezels (): void
2021-04-27 13:50:29 +00:00
stats (options?: StatsCardOptions): StatsForNerdsPlugin
2021-04-12 08:26:30 +00:00
qualityLevels (): QualityLevels
2020-01-28 16:29:50 +00:00
textTracks (): TextTrackList & {
on: Function
2020-05-06 09:54:33 +00:00
tracks_: (TextTrack & { id: string, label: string, src: string })[]
2020-01-28 16:29:50 +00:00
}
2020-02-03 12:33:42 +00:00
dock (options: { title: string, description: string }): void
2020-08-04 09:42:06 +00:00
upnext (options: Partial<EndCardOptions>): void
2020-08-05 07:44:58 +00:00
playlist (): PlaylistPlugin
2020-01-28 16:29:50 +00:00
}
}
export interface VideoJSTechHLS extends videojs.Tech {
hlsProvider: any // FIXME: typings
}
export interface HlsjsConfigHandlerOptions {
2021-08-03 09:51:49 +00:00
hlsjsConfig?: HlsConfig & { 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 16:21:19 +00:00
type VideoJSCaption = {
label: string
language: string
src: string
}
2018-10-05 09:15:06 +00:00
type UserWatching = {
url: string,
authorizationHeader: string
}
type PeerTubePluginOptions = {
2019-01-29 07:37:25 +00:00
mode: PlayerMode
autoplay: boolean
videoViewUrl: string
videoDuration: number
2018-10-05 09:15:06 +00:00
userWatching?: UserWatching
subtitle?: string
videoCaptions: VideoJSCaption[]
2019-03-07 16:06:00 +00:00
stopTime: number | string
2020-12-07 14:58:57 +00:00
isLive: boolean
videoUUID: string
}
2020-08-05 07:44:58 +00:00
type PlaylistPluginOptions = {
elements: VideoPlaylistElement[]
2020-08-05 07:44:58 +00:00
playlist: VideoPlaylist
getCurrentPosition: () => number
onItemClicked: (element: VideoPlaylistElement) => void
2020-08-05 07:44:58 +00:00
}
2020-08-05 09:02:14 +00:00
type NextPreviousVideoButtonOptions = {
type: 'next' | 'previous'
handler: Function
isDisabled: () => boolean
}
2021-07-26 12:12:39 +00:00
type PeerTubeLinkButtonOptions = {
shortUUID: string
}
type WebtorrentPluginOptions = {
playerElement: HTMLVideoElement
autoplay: boolean
videoDuration: number
videoFiles: VideoFile[]
2019-03-07 16:06:00 +00:00
startTime: number | string
}
type P2PMediaLoaderPluginOptions = {
2019-08-23 08:19:44 +00:00
redundancyUrlManager: RedundancyUrlManager
type: string
src: string
2019-03-07 16:06:00 +00:00
startTime: number | string
}
type VideoJSPluginOptions = {
2020-08-05 07:44:58 +00: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 09:16:30 +00:00
id?: number
}
type AutoResolutionUpdateData = {
possible: boolean
}
2019-01-24 09:16:30 +00:00
type PlayerNetworkInfo = {
source: 'webtorrent' | 'p2p-media-loader'
2019-01-29 07:37:25 +00:00
http: {
downloadSpeed: number
uploadSpeed: number
downloaded: number
uploaded: number
}
2019-01-24 09:16:30 +00:00
p2p: {
downloadSpeed: number
uploadSpeed: number
downloaded: number
uploaded: number
numPeers: number
}
2021-04-27 13:50:29 +00:00
// In bytes
bandwidthEstimate: number
2019-01-24 09:16:30 +00:00
}
2020-08-05 07:44:58 +00:00
type PlaylistItemOptions = {
element: VideoPlaylistElement
onClicked: Function
}
export {
2019-01-24 09:16:30 +00:00
PlayerNetworkInfo,
2020-08-05 07:44:58 +00:00
PlaylistItemOptions,
2020-08-05 09:02:14 +00:00
NextPreviousVideoButtonOptions,
ResolutionUpdateData,
AutoResolutionUpdateData,
2020-08-05 07:44:58 +00:00
PlaylistPluginOptions,
2018-10-05 09:15:06 +00:00
VideoJSCaption,
UserWatching,
PeerTubePluginOptions,
WebtorrentPluginOptions,
P2PMediaLoaderPluginOptions,
VideoJSPluginOptions,
LoadedQualityData,
QualityLevelRepresentation,
2021-07-26 12:12:39 +00:00
PeerTubeLinkButtonOptions,
QualityLevels
}