Source: lib/polyfill/mediasource.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.polyfill.MediaSource');
  7. goog.require('shaka.log');
  8. goog.require('shaka.polyfill');
  9. goog.require('shaka.util.MimeUtils');
  10. goog.require('shaka.util.Platform');
  11. /**
  12. * @summary A polyfill to patch MSE bugs.
  13. * @export
  14. */
  15. shaka.polyfill.MediaSource = class {
  16. /**
  17. * Install the polyfill if needed.
  18. * @export
  19. */
  20. static install() {
  21. shaka.log.debug('MediaSource.install');
  22. // MediaSource bugs are difficult to detect without checking for the
  23. // affected platform. SourceBuffer is not always exposed on window, for
  24. // example, and instances are only accessible after setting up MediaSource
  25. // on a video element. Because of this, we use UA detection and other
  26. // platform detection tricks to decide which patches to install.
  27. const safariVersion = shaka.util.Platform.safariVersion();
  28. if (!window.MediaSource) {
  29. shaka.log.info('No MSE implementation available.');
  30. } else if (window.cast && cast.__platform__ &&
  31. cast.__platform__.canDisplayType) {
  32. shaka.log.info('Patching Chromecast MSE bugs.');
  33. // Chromecast cannot make accurate determinations via isTypeSupported.
  34. shaka.polyfill.MediaSource.patchCastIsTypeSupported_();
  35. } else if (safariVersion) {
  36. // TS content is broken on Safari in general.
  37. // See https://github.com/shaka-project/shaka-player/issues/743
  38. // and https://bugs.webkit.org/show_bug.cgi?id=165342
  39. shaka.polyfill.MediaSource.rejectTsContent_();
  40. // NOTE: shaka.Player.isBrowserSupported() has its own restrictions on
  41. // Safari version.
  42. if (safariVersion <= 12) {
  43. shaka.log.info('Patching Safari 11 & 12 MSE bugs.');
  44. // Safari 11 & 12 do not correctly implement abort() on SourceBuffer.
  45. // Calling abort() before appending a segment causes that segment to be
  46. // incomplete in the buffer.
  47. // Bug filed: https://bugs.webkit.org/show_bug.cgi?id=165342
  48. shaka.polyfill.MediaSource.stubAbort_();
  49. // If you remove up to a keyframe, Safari 11 & 12 incorrectly will also
  50. // remove that keyframe and the content up to the next.
  51. // Offsetting the end of the removal range seems to help.
  52. // Bug filed: https://bugs.webkit.org/show_bug.cgi?id=177884
  53. shaka.polyfill.MediaSource.patchRemovalRange_();
  54. } else {
  55. shaka.log.info('Patching Safari 13 MSE bugs.');
  56. // Safari 13 does not correctly implement abort() on SourceBuffer.
  57. // Calling abort() before appending a segment causes that segment to be
  58. // incomplete in the buffer.
  59. // Bug filed: https://bugs.webkit.org/show_bug.cgi?id=165342
  60. shaka.polyfill.MediaSource.stubAbort_();
  61. }
  62. } else if (shaka.util.Platform.isTizen2() ||
  63. shaka.util.Platform.isTizen3() ||
  64. shaka.util.Platform.isTizen4()) {
  65. shaka.log.info('Rejecting Opus.');
  66. // Tizen's implementation of MSE does not work well with opus. To prevent
  67. // the player from trying to play opus on Tizen, we will override media
  68. // source to always reject opus content.
  69. shaka.polyfill.MediaSource.rejectCodec_('opus');
  70. } else {
  71. shaka.log.info('Using native MSE as-is.');
  72. }
  73. if (window.MediaSource &&
  74. MediaSource.isTypeSupported('video/webm; codecs="vp9"') &&
  75. !MediaSource.isTypeSupported('video/webm; codecs="vp09.00.10.08"')) {
  76. shaka.log.info('Patching vp09 support queries.');
  77. // Only the old, deprecated style of VP9 codec strings is supported.
  78. // This occurs on older smart TVs.
  79. // Patch isTypeSupported to translate the new strings into the old one.
  80. shaka.polyfill.MediaSource.patchVp09_();
  81. }
  82. }
  83. /**
  84. * Stub out abort(). On some buggy MSE implementations, calling abort()
  85. * causes various problems.
  86. *
  87. * @private
  88. */
  89. static stubAbort_() {
  90. /* eslint-disable no-restricted-syntax */
  91. const addSourceBuffer = MediaSource.prototype.addSourceBuffer;
  92. MediaSource.prototype.addSourceBuffer = function(...varArgs) {
  93. const sourceBuffer = addSourceBuffer.apply(this, varArgs);
  94. sourceBuffer.abort = function() {}; // Stub out for buggy implementations.
  95. return sourceBuffer;
  96. };
  97. /* eslint-enable no-restricted-syntax */
  98. }
  99. /**
  100. * Patch remove(). On Safari 11, if you call remove() to remove the content
  101. * up to a keyframe, Safari will also remove the keyframe and all of the data
  102. * up to the next one. For example, if the keyframes are at 0s, 5s, and 10s,
  103. * and you tried to remove 0s-5s, it would instead remove 0s-10s.
  104. *
  105. * Offsetting the end of the range seems to be a usable workaround.
  106. *
  107. * @private
  108. */
  109. static patchRemovalRange_() {
  110. // eslint-disable-next-line no-restricted-syntax
  111. const originalRemove = SourceBuffer.prototype.remove;
  112. // eslint-disable-next-line no-restricted-syntax
  113. SourceBuffer.prototype.remove = function(startTime, endTime) {
  114. // eslint-disable-next-line no-restricted-syntax
  115. return originalRemove.call(this, startTime, endTime - 0.001);
  116. };
  117. }
  118. /**
  119. * Patch isTypeSupported() to reject TS content. Used to avoid TS-related MSE
  120. * bugs on Safari.
  121. *
  122. * @private
  123. */
  124. static rejectTsContent_() {
  125. const originalIsTypeSupported = MediaSource.isTypeSupported;
  126. MediaSource.isTypeSupported = (mimeType) => {
  127. // Parse the basic MIME type from its parameters.
  128. const pieces = mimeType.split(/ *; */);
  129. const basicMimeType = pieces[0];
  130. const container = basicMimeType.split('/')[1];
  131. if (container.toLowerCase() == 'mp2t') {
  132. return false;
  133. }
  134. return originalIsTypeSupported(mimeType);
  135. };
  136. }
  137. /**
  138. * Patch |MediaSource.isTypeSupported| to always reject |codec|. This is used
  139. * when we know that we are on a platform that does not work well with a given
  140. * codec.
  141. *
  142. * @param {string} codec
  143. * @private
  144. */
  145. static rejectCodec_(codec) {
  146. const isTypeSupported = MediaSource.isTypeSupported;
  147. MediaSource.isTypeSupported = (mimeType) => {
  148. const actualCodec = shaka.util.MimeUtils.getCodecBase(mimeType);
  149. return actualCodec != codec && isTypeSupported(mimeType);
  150. };
  151. }
  152. /**
  153. * Patch isTypeSupported() to chain to a private API on the Chromecast which
  154. * can query for support of detailed content parameters.
  155. *
  156. * @private
  157. */
  158. static patchCastIsTypeSupported_() {
  159. const originalIsTypeSupported = MediaSource.isTypeSupported;
  160. MediaSource.isTypeSupported = (mimeType) => {
  161. // Parse the basic MIME type from its parameters.
  162. const pieces = mimeType.split(/ *; */);
  163. pieces.shift(); // Remove basic MIME type from pieces.
  164. const hasCodecs = pieces.some((piece) => piece.startsWith('codecs='));
  165. if (!hasCodecs) {
  166. // Though the original reason for this special case was not documented,
  167. // it is presumed to be because the platform won't accept a MIME type
  168. // without codecs in canDisplayType. It is valid, however, in
  169. // isTypeSupported.
  170. return originalIsTypeSupported(mimeType);
  171. }
  172. // Only canDisplayType can check extended MIME type parameters on this
  173. // platform (such as frame rate, resolution, etc).
  174. // In previous versions of this polyfill, the MIME type parameters were
  175. // manipulated, filtered, or extended. This is no longer true, so we pass
  176. // the full MIME type to the platform as we received it.
  177. return cast.__platform__.canDisplayType(mimeType);
  178. };
  179. }
  180. /**
  181. * Patch isTypeSupported() to translate vp09 codec strings into vp9, to allow
  182. * such content to play on older smart TVs.
  183. *
  184. * @private
  185. */
  186. static patchVp09_() {
  187. const originalIsTypeSupported = MediaSource.isTypeSupported;
  188. if (shaka.util.Platform.isWebOS()) {
  189. // Don't do this on LG webOS as otherwise it is unable
  190. // to play vp09 at all.
  191. return;
  192. }
  193. MediaSource.isTypeSupported = (mimeType) => {
  194. // Split the MIME type into its various parameters.
  195. const pieces = mimeType.split(/ *; */);
  196. const codecsIndex =
  197. pieces.findIndex((piece) => piece.startsWith('codecs='));
  198. if (codecsIndex < 0) {
  199. // No codec? Call the original without modifying the MIME type.
  200. return originalIsTypeSupported(mimeType);
  201. }
  202. const codecsParam = pieces[codecsIndex];
  203. const codecs = codecsParam
  204. .replace('codecs=', '').replace(/"/g, '').split(/\s*,\s*/);
  205. const vp09Index = codecs.findIndex(
  206. (codecName) => codecName.startsWith('vp09'));
  207. if (vp09Index >= 0) {
  208. // vp09? Replace it with vp9.
  209. codecs[vp09Index] = 'vp9';
  210. pieces[codecsIndex] = 'codecs="' + codecs.join(',') + '"';
  211. mimeType = pieces.join('; ');
  212. }
  213. return originalIsTypeSupported(mimeType);
  214. };
  215. }
  216. };
  217. shaka.polyfill.register(shaka.polyfill.MediaSource.install);