UNPKG

shaka-player

Version:
153 lines (132 loc) 3.3 kB
/*! @license * Shaka Player * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ goog.provide('shaka.device.AppleBrowser'); goog.require('shaka.device.AbstractDevice'); goog.require('shaka.device.DeviceFactory'); goog.require('shaka.device.IDevice'); goog.require('shaka.util.Lazy'); /** * @final */ shaka.device.AppleBrowser = class extends shaka.device.AbstractDevice { constructor() { super(); /** @private {!shaka.util.Lazy<?number>} */ this.version_ = new shaka.util.Lazy(() => { // This works for iOS Safari and desktop Safari, which contain something // like "Version/13.0" indicating the major Safari or iOS version. let match = navigator.userAgent.match(/Version\/(\d+)/); if (match) { return parseInt(match[1], /* base= */ 10); } // This works for all other browsers on iOS, which contain something like // "OS 13_3" indicating the major & minor iOS version. match = navigator.userAgent.match(/OS (\d+)(?:_\d+)?/); if (match) { return parseInt(match[1], /* base= */ 10); } return null; }); /** @private {!shaka.util.Lazy<!shaka.device.IDevice.DeviceType>} */ this.deviceType_ = new shaka.util.Lazy(() => { if (/(?:iPhone|iPad|iPod)/.test(navigator.userAgent) || navigator.maxTouchPoints > 1) { return shaka.device.IDevice.DeviceType.MOBILE; } if ('xr' in navigator) { return shaka.device.IDevice.DeviceType.VR; } return shaka.device.IDevice.DeviceType.DESKTOP; }); } /** * @override */ getVersion() { return this.version_.value(); } /** * @override */ getDeviceName() { return 'Apple Browser'; } /** * @override */ getDeviceType() { return this.deviceType_.value(); } /** * @override */ getBrowserEngine() { return shaka.device.IDevice.BrowserEngine.WEBKIT; } /** * @override */ supportsMediaCapabilities() { return false; } /** * @override */ requiresEncryptionInfoInAllInitSegments(keySystem, contentType) { return contentType === 'audio'; } /** * @override */ insertEncryptionDataBeforeClear() { return true; } /** * @override */ requiresTfhdFix(contentType) { return contentType === 'audio'; } /** * @override */ adjustConfig(config) { super.adjustConfig(config); config.abr.minTimeToSwitch = 0.5; return config; } /** * @override */ supportsAirPlay() { return true; } /** * @return {boolean} * @private */ static isAppleBrowser_() { if (!(navigator.vendor || '').includes('Apple')) { return false; } if (/(?:iPhone|iPad|iPod)/.test(navigator.userAgent) || navigator.maxTouchPoints > 1) { return true; } if (navigator.userAgentData && navigator.userAgentData.platform && navigator.userAgentData.platform.toLowerCase() == 'macos') { return true; } else if (navigator.platform && navigator.platform.toLowerCase().includes('mac')) { return true; } return false; } }; if (shaka.device.AppleBrowser.isAppleBrowser_()) { shaka.device.DeviceFactory.registerDeviceFactory( () => new shaka.device.AppleBrowser()); }