mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
6bd9f42cf2
Some deprecation messages were misleading, and claimed that entire
classes like AbrManager were deprected, when in fact, it was a
particular form of AbrManager (without a method) that is deprecated.
This adds method and other details to the deprecation calls where
needed.
We also had a malformed messsage where join('') was called on the pieces
instead of join(' '). This fixes the formatting.
199 lines
4.9 KiB
JavaScript
199 lines
4.9 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
goog.provide('shaka.media.ManifestParser');
|
|
|
|
goog.require('shaka.Deprecate');
|
|
goog.require('shaka.log');
|
|
goog.require('shaka.util.Error');
|
|
goog.require('shaka.util.Platform');
|
|
|
|
|
|
// TODO: revisit this when Closure Compiler supports partially-exported classes.
|
|
/**
|
|
* @summary An interface to register manifest parsers.
|
|
* @export
|
|
*/
|
|
shaka.media.ManifestParser = class {
|
|
/**
|
|
* Registers a manifest parser by file extension.
|
|
*
|
|
* @param {string} extension The file extension of the manifest.
|
|
* @param {shaka.extern.ManifestParser.Factory} parserFactory The factory
|
|
* used to create parser instances.
|
|
* @export
|
|
*/
|
|
static registerParserByExtension(extension, parserFactory) {
|
|
shaka.Deprecate.deprecateFeature(5,
|
|
'ManifestParser.registerParserByExtension',
|
|
'Please use an ManifestParser with registerParserByMime function.');
|
|
}
|
|
|
|
|
|
/**
|
|
* Registers a manifest parser by MIME type.
|
|
*
|
|
* @param {string} mimeType The MIME type of the manifest.
|
|
* @param {shaka.extern.ManifestParser.Factory} parserFactory The factory
|
|
* used to create parser instances.
|
|
* @export
|
|
*/
|
|
static registerParserByMime(mimeType, parserFactory) {
|
|
shaka.media.ManifestParser.parsersByMime[mimeType] = parserFactory;
|
|
}
|
|
|
|
/**
|
|
* Unregisters a manifest parser by MIME type.
|
|
*
|
|
* @param {string} mimeType The MIME type of the manifest.
|
|
* @export
|
|
*/
|
|
static unregisterParserByMime(mimeType) {
|
|
delete shaka.media.ManifestParser.parsersByMime[mimeType];
|
|
}
|
|
|
|
|
|
/**
|
|
* Returns a map of manifest support for well-known types.
|
|
*
|
|
* @return {!Object.<string, boolean>}
|
|
*/
|
|
static probeSupport() {
|
|
const ManifestParser = shaka.media.ManifestParser;
|
|
const support = {};
|
|
|
|
// Make sure all registered parsers are shown, but only for MSE-enabled
|
|
// platforms where our parsers matter.
|
|
if (shaka.util.Platform.supportsMediaSource()) {
|
|
for (const type in ManifestParser.parsersByMime) {
|
|
support[type] = true;
|
|
}
|
|
}
|
|
|
|
// Make sure all well-known types are tested as well, just to show an
|
|
// explicit false for things people might be expecting.
|
|
const testMimeTypes = [
|
|
// DASH
|
|
'application/dash+xml',
|
|
// HLS
|
|
'application/x-mpegurl',
|
|
'application/vnd.apple.mpegurl',
|
|
// SmoothStreaming
|
|
'application/vnd.ms-sstr+xml',
|
|
];
|
|
|
|
for (const type of testMimeTypes) {
|
|
// Only query our parsers for MSE-enabled platforms. Otherwise, query a
|
|
// temporary media element for native support for these types.
|
|
if (shaka.util.Platform.supportsMediaSource()) {
|
|
support[type] = !!ManifestParser.parsersByMime[type];
|
|
} else {
|
|
support[type] = shaka.util.Platform.supportsMediaType(type);
|
|
}
|
|
}
|
|
|
|
return support;
|
|
}
|
|
|
|
|
|
/**
|
|
* Get a factory that can create a manifest parser that should be able to
|
|
* parse the manifest at |uri|.
|
|
*
|
|
* @param {string} uri
|
|
* @param {?string} mimeType
|
|
* @return {shaka.extern.ManifestParser.Factory}
|
|
*/
|
|
static getFactory(uri, mimeType) {
|
|
const ManifestParser = shaka.media.ManifestParser;
|
|
|
|
// Try using the MIME type we were given.
|
|
if (mimeType) {
|
|
const factory = ManifestParser.parsersByMime[mimeType.toLowerCase()];
|
|
if (factory) {
|
|
return factory;
|
|
}
|
|
|
|
shaka.log.warning(
|
|
'Could not determine manifest type using MIME type ', mimeType);
|
|
}
|
|
|
|
throw new shaka.util.Error(
|
|
shaka.util.Error.Severity.CRITICAL,
|
|
shaka.util.Error.Category.MANIFEST,
|
|
shaka.util.Error.Code.UNABLE_TO_GUESS_MANIFEST_TYPE,
|
|
uri,
|
|
mimeType);
|
|
}
|
|
|
|
|
|
/**
|
|
* Determines whether or not the MIME type is supported by our own
|
|
* manifest parsers on this platform. This takes into account whether or not
|
|
* MediaSource is available, as well as which parsers are registered to the
|
|
* system.
|
|
*
|
|
* @param {string} mimeType
|
|
* @return {boolean}
|
|
*/
|
|
static isSupported(mimeType) {
|
|
// Without MediaSource, our own parsers are useless.
|
|
if (!shaka.util.Platform.supportsMediaSource()) {
|
|
return false;
|
|
}
|
|
|
|
if (mimeType in shaka.media.ManifestParser.parsersByMime) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @const {string}
|
|
*/
|
|
shaka.media.ManifestParser.HLS = 'HLS';
|
|
|
|
|
|
/**
|
|
* @const {string}
|
|
*/
|
|
shaka.media.ManifestParser.DASH = 'DASH';
|
|
|
|
|
|
/**
|
|
* @const {string}
|
|
*/
|
|
shaka.media.ManifestParser.MSS = 'MSS';
|
|
|
|
|
|
/**
|
|
* @const {string}
|
|
*/
|
|
shaka.media.ManifestParser.UNKNOWN = 'UNKNOWN';
|
|
|
|
|
|
/**
|
|
* @enum {string}
|
|
* @export
|
|
*/
|
|
shaka.media.ManifestParser.AccessibilityPurpose = {
|
|
VISUALLY_IMPAIRED: 'visually impaired',
|
|
HARD_OF_HEARING: 'hard of hearing',
|
|
};
|
|
|
|
|
|
/**
|
|
* Contains the parser factory functions indexed by MIME type.
|
|
*
|
|
* @type {!Object.<string, shaka.extern.ManifestParser.Factory>}
|
|
*/
|
|
shaka.media.ManifestParser.parsersByMime = {};
|
|
|
|
|