// Type definitions for plyr 3.5 // Project: https://plyr.io // Definitions by: ondratra // TypeScript Version: 3.0 export = Plyr; export as namespace Plyr; declare class Plyr { /** * Setup a new instance */ static setup(targets: NodeList | HTMLElement | HTMLElement[] | string, options?: Plyr.Options): Plyr[]; /** * Check for support * @param mediaType * @param provider * @param playsInline Whether the player has the playsinline attribute (only applicable to iOS 10+) */ static supported(mediaType?: Plyr.MediaType, provider?: Plyr.Provider, playsInline?: boolean): Plyr.Support; constructor(targets: NodeList | HTMLElement | HTMLElement[] | string, options?: Plyr.Options); /** * Indicates if the current player is HTML5. */ readonly isHTML5: boolean; /** * Indicates if the current player is an embedded player. */ readonly isEmbed: boolean; /** * Indicates if the current player is playing. */ readonly playing: boolean; /** * Indicates if the current player is paused. */ readonly paused: boolean; /** * Indicates if the current player is stopped. */ readonly stopped: boolean; /** * Indicates if the current player has finished playback. */ readonly ended: boolean; /** * Returns a float between 0 and 1 indicating how much of the media is buffered */ readonly buffered: number; /** * Gets or sets the currentTime for the player. The setter accepts a float in seconds. */ currentTime: number; /** * Indicates if the current player is seeking. */ readonly seeking: boolean; /** * Returns the duration for the current media. */ readonly duration: number; /** * Gets or sets the volume for the player. The setter accepts a float between 0 and 1. */ volume: number; /** * Gets or sets the muted state of the player. The setter accepts a boolean. */ muted: boolean; /** * Indicates if the current media has an audio track. */ readonly hasAudio: boolean; /** * Gets or sets the speed for the player. The setter accepts a value in the options specified in your config. Generally the minimum should be 0.5. */ speed: number; /** * Gets or sets the quality for the player. The setter accepts a value from the options specified in your config. */ quality: number; /** * Gets or sets the current loop state of the player. */ loop: boolean; /** * Gets or sets the current source for the player. */ source: Plyr.SourceInfo; /** * Gets or sets the current poster image URL for the player. */ poster: string; /** * Gets or sets the autoplay state of the player. */ autoplay: boolean; /** * Gets or sets the caption track by index. 1 means the track is missing or captions is not active */ currentTrack: number; /** * Gets or sets the preferred captions language for the player. The setter accepts an ISO twoletter language code. Support for the languages is dependent on the captions you include. * If your captions don't have any language data, or if you have multiple tracks with the same language, you may want to use currentTrack instead. */ language: string; /** * Gets or sets the picture-in-picture state of the player. This currently only supported on Safari 10+ on MacOS Sierra+ and iOS 10+. */ pip: boolean; /** * Gets or sets the aspect ratio for embedded players. */ ratio?: string; /** * Access Elements cache */ elements: Plyr.Elements; /** * Returns the current video Provider */ readonly provider: Plyr.Provider; /** * Returns the native API for Vimeo or Youtube players */ readonly embed?: any; readonly fullscreen: Plyr.FullscreenControl; /** * Start playback. * For HTML5 players, play() will return a Promise in some browsers - WebKit and Mozilla according to MDN at time of writing. */ play(): Promise | void; /** * Pause playback. */ pause(): void; /** * Toggle playback, if no parameters are passed, it will toggle based on current status. */ togglePlay(toggle?: boolean): boolean; /** * Stop playback and reset to start. */ stop(): void; /** * Restart playback. */ restart(): void; /** * Rewind playback by the specified seek time. If no parameter is passed, the default seek time will be used. */ rewind(seekTime?: number): void; /** * Fast forward by the specified seek time. If no parameter is passed, the default seek time will be used. */ forward(seekTime?: number): void; /** * Increase volume by the specified step. If no parameter is passed, the default step will be used. */ increaseVolume(step?: number): void; /** * Increase volume by the specified step. If no parameter is passed, the default step will be used. */ decreaseVolume(step?: number): void; /** * Toggle captions display. If no parameter is passed, it will toggle based on current status. */ toggleCaptions(toggle?: boolean): void; /** * Trigger the airplay dialog on supported devices. */ airplay(): void; /** * Sets the preview thubmnails for the current source. */ setPreviewThumbnails(source: Plyr.PreviewThumbnailsOptions): void; /** * Toggle the controls (video only). Takes optional truthy value to force it on/off. */ toggleControls(toggle: boolean): void; /** * Add an event listener for the specified event. */ on(event: K, callback: (this: this, event: Plyr.PlyrEventMap[K]) => void): void; /** * Add an event listener for the specified event once. */ once(event: K, callback: (this: this, event: Plyr.PlyrEventMap[K]) => void): void; /** * Remove an event listener for the specified event. */ off(event: K, callback: (this: this, event: Plyr.PlyrEventMap[K]) => void): void; /** * Check support for a mime type. */ supports(type: string): boolean; /** * Destroy lib instance * @param {Function} callback - Callback for when destroy is complete * @param {Boolean} soft - Whether it's a soft destroy (for source changes etc) */ destroy(callback?: (...args: any[]) => void, soft?: boolean): void; } declare namespace Plyr { type MediaType = 'audio' | 'video'; type Provider = 'html5' | 'youtube' | 'vimeo'; type StandardEventMap = { progress: PlyrEvent; playing: PlyrEvent; play: PlyrEvent; pause: PlyrEvent; timeupdate: PlyrEvent; volumechange: PlyrEvent; seeking: PlyrEvent; seeked: PlyrEvent; ratechange: PlyrEvent; ended: PlyrEvent; enterfullscreen: PlyrEvent; exitfullscreen: PlyrEvent; captionsenabled: PlyrEvent; captionsdisabled: PlyrEvent; languagechange: PlyrEvent; controlshidden: PlyrEvent; controlsshown: PlyrEvent; ready: PlyrEvent; }; // For retrocompatibility, we keep StandadEvent type StandadEvent = keyof Plyr.StandardEventMap; type Html5EventMap = { loadstart: PlyrEvent; loadeddata: PlyrEvent; loadedmetadata: PlyrEvent; canplay: PlyrEvent; canplaythrough: PlyrEvent; stalled: PlyrEvent; waiting: PlyrEvent; emptied: PlyrEvent; cuechange: PlyrEvent; error: PlyrEvent; }; // For retrocompatibility, we keep Html5Event type Html5Event = keyof Plyr.Html5EventMap; type YoutubeEventMap = { statechange: PlyrStateChangeEvent; qualitychange: PlyrEvent; qualityrequested: PlyrEvent; }; // For retrocompatibility, we keep YoutubeEvent type YoutubeEvent = keyof Plyr.YoutubeEventMap; type PlyrEventMap = StandardEventMap & Html5EventMap & YoutubeEventMap; interface FullscreenControl { /** * Indicates if the current player is in fullscreen mode. */ readonly active: boolean; /** * Indicates if the current player has fullscreen enabled. */ readonly enabled: boolean; /** * Enter fullscreen. If fullscreen is not supported, a fallback ""full window/viewport"" is used instead. */ enter(): void; /** * Exit fullscreen. */ exit(): void; /** * Toggle fullscreen. */ toggle(): void; } interface Options { /** * Completely disable Plyr. This would allow you to do a User Agent check or similar to programmatically enable or disable Plyr for a certain UA. Example below. */ enabled?: boolean; /** * Display debugging information in the console */ debug?: boolean; /** * If a function is passed, it is assumed your method will return either an element or HTML string for the controls. Three arguments will be passed to your function; * id (the unique id for the player), seektime (the seektime step in seconds), and title (the media title). See CONTROLS.md for more info on how the html needs to be structured. * Defaults to ['play-large', 'play', 'progress', 'current-time', 'mute', 'volume', 'captions', 'settings', 'pip', 'airplay', 'fullscreen'] */ controls?: string[] | ((id: string, seektime: number, title: string) => unknown) | Element; /** * If you're using the default controls are used then you can specify which settings to show in the menu * Defaults to ['captions', 'quality', 'speed', 'loop'] */ settings?: string[]; /** * Used for internationalization (i18n) of the text within the UI. */ i18n?: any; /** * Load the SVG sprite specified as the iconUrl option (if a URL). If false, it is assumed you are handling sprite loading yourself. */ loadSprite?: boolean; /** * Specify a URL or path to the SVG sprite. See the SVG section for more info. */ iconUrl?: string; /** * Specify the id prefix for the icons used in the default controls (e.g. plyr-play would be plyr). * This is to prevent clashes if you're using your own SVG sprite but with the default controls. * Most people can ignore this option. */ iconPrefix?: string; /** * Specify a URL or path to a blank video file used to properly cancel network requests. */ blankVideo?: string; /** * Autoplay the media on load. This is generally advised against on UX grounds. It is also disabled by default in some browsers. * If the autoplay attribute is present on a