rx-player
Version:
Canal+ HTML5 Video Player
23 lines (22 loc) • 971 B
JavaScript
import features from "../../../features";
import log from "../../../log";
/**
* Convert text track data into timed HTML Cues.
* @param {string} type - Text track format wanted
* @param {string} data - Text track data
* @param {Number} timestampOffset - offset to apply to every timed text
* @param {string} [language] - language of the text tracks
* @returns {Array.<Object>}
* @throws Error - Throw if no parser is found for the given type
*/
export default function parseTextTrackToElements(type, data, timestampOffset, language) {
log.debug("HTSB: Finding parser for html text tracks:", type);
const parser = features.htmlTextTracksParsers[type];
if (typeof parser !== "function") {
throw new Error("no parser found for the given text track");
}
log.debug("HTSB: Parser found, parsing...");
const parsed = parser(data, timestampOffset, language);
log.debug("HTTB: Parsed successfully!", parsed.length);
return parsed;
}