mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
160e36be46
Add the following methods: - addChaptersTrack - getChapters - getChaptersTracks The following formats are supported: WebVTT and SRT
26 lines
412 B
JavaScript
26 lines
412 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for TextTrack which are missing from the Closure
|
|
* compiler.
|
|
*
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @type {string} */
|
|
TextTrack.prototype.id;
|
|
|
|
/** @type {string} */
|
|
TextTrack.prototype.kind;
|
|
|
|
/** @type {string} */
|
|
TextTrack.prototype.label;
|
|
|
|
/** @type {string} */
|
|
TextTrack.prototype.language;
|