Source: lib/media/transmuxer.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.media.Transmuxer');
  7. goog.require('goog.asserts');
  8. goog.require('shaka.media.Capabilities');
  9. goog.require('shaka.util.BufferUtils');
  10. goog.require('shaka.util.Error');
  11. goog.require('shaka.util.IDestroyable');
  12. goog.require('shaka.util.ManifestParserUtils');
  13. goog.require('shaka.util.PublicPromise');
  14. goog.require('shaka.util.Uint8ArrayUtils');
  15. goog.require('shaka.dependencies');
  16. /**
  17. * Transmuxer provides all operations for transmuxing from Transport
  18. * Stream or AAC to MP4.
  19. *
  20. * @implements {shaka.util.IDestroyable}
  21. */
  22. shaka.media.Transmuxer = class {
  23. /**
  24. * @param {string} mimeType
  25. */
  26. constructor(mimeType) {
  27. /** @private {string} */
  28. this.originalMimeType_ = mimeType;
  29. /** @private {?muxjs} */
  30. this.muxjs_ = shaka.dependencies.muxjs();
  31. /** @private {muxjs.mp4.Transmuxer} */
  32. this.muxTransmuxer_ = null;
  33. /** @private {shaka.util.PublicPromise} */
  34. this.transmuxPromise_ = null;
  35. /** @private {!Array.<!Uint8Array>} */
  36. this.transmuxedData_ = [];
  37. /** @private {!Array.<muxjs.mp4.ClosedCaption>} */
  38. this.captions_ = [];
  39. /** @private {boolean} */
  40. this.isTransmuxing_ = false;
  41. if (this.muxjs_) {
  42. this.muxTransmuxer_ = new this.muxjs_.mp4.Transmuxer({
  43. 'keepOriginalTimestamps': true,
  44. });
  45. this.muxTransmuxer_.on('data', (segment) => this.onTransmuxed_(segment));
  46. this.muxTransmuxer_.on('done', () => this.onTransmuxDone_());
  47. }
  48. }
  49. /**
  50. * @override
  51. */
  52. destroy() {
  53. if (this.muxTransmuxer_) {
  54. this.muxTransmuxer_.dispose();
  55. }
  56. this.muxTransmuxer_ = null;
  57. return Promise.resolve();
  58. }
  59. /**
  60. * Check if the content type is Transport Stream or AAC, and if muxjs is
  61. * loaded.
  62. * @param {string} mimeType
  63. * @param {string=} contentType
  64. * @return {boolean}
  65. */
  66. static isSupported(mimeType, contentType) {
  67. const Transmuxer = shaka.media.Transmuxer;
  68. const Capabilities = shaka.media.Capabilities;
  69. const isTs = Transmuxer.isTsContainer_(mimeType);
  70. const isAac = Transmuxer.isAacContainer_(mimeType);
  71. if (!shaka.dependencies.muxjs() || (!isTs && !isAac)) {
  72. return false;
  73. }
  74. if (isAac) {
  75. return Capabilities.isTypeSupported(Transmuxer.convertAacCodecs_());
  76. }
  77. if (contentType) {
  78. return Capabilities.isTypeSupported(
  79. Transmuxer.convertTsCodecs_(contentType, mimeType));
  80. }
  81. const ContentType = shaka.util.ManifestParserUtils.ContentType;
  82. const audioMime = Transmuxer.convertTsCodecs_(ContentType.AUDIO, mimeType);
  83. const videoMime = Transmuxer.convertTsCodecs_(ContentType.VIDEO, mimeType);
  84. return Capabilities.isTypeSupported(audioMime) ||
  85. Capabilities.isTypeSupported(videoMime);
  86. }
  87. /**
  88. * Check if the mimetype is 'audio/aac'.
  89. * @param {string} mimeType
  90. * @return {boolean}
  91. * @private
  92. */
  93. static isAacContainer_(mimeType) {
  94. return mimeType.toLowerCase().split(';')[0] == 'audio/aac';
  95. }
  96. /**
  97. * Check if the mimetype contains 'mp2t'.
  98. * @param {string} mimeType
  99. * @return {boolean}
  100. * @private
  101. */
  102. static isTsContainer_(mimeType) {
  103. return mimeType.toLowerCase().split(';')[0].split('/')[1] == 'mp2t';
  104. }
  105. /**
  106. * For any stream, convert its codecs to MP4 codecs.
  107. * @param {string} contentType
  108. * @param {string} mimeType
  109. * @return {string}
  110. */
  111. static convertCodecs(contentType, mimeType) {
  112. const Transmuxer = shaka.media.Transmuxer;
  113. if (Transmuxer.isAacContainer_(mimeType)) {
  114. return Transmuxer.convertAacCodecs_();
  115. } else if (Transmuxer.isTsContainer_(mimeType)) {
  116. return Transmuxer.convertTsCodecs_(contentType, mimeType);
  117. }
  118. return mimeType;
  119. }
  120. /**
  121. * For aac stream, convert its codecs to MP4 codecs.
  122. * @return {string}
  123. * @private
  124. */
  125. static convertAacCodecs_() {
  126. return 'audio/mp4; codecs="mp4a.40.2"';
  127. }
  128. /**
  129. * For transport stream, convert its codecs to MP4 codecs.
  130. * @param {string} contentType
  131. * @param {string} tsMimeType
  132. * @return {string}
  133. * @private
  134. */
  135. static convertTsCodecs_(contentType, tsMimeType) {
  136. const ContentType = shaka.util.ManifestParserUtils.ContentType;
  137. let mp4MimeType = tsMimeType.replace(/mp2t/i, 'mp4');
  138. if (contentType == ContentType.AUDIO) {
  139. mp4MimeType = mp4MimeType.replace('video', 'audio');
  140. }
  141. // Handle legacy AVC1 codec strings (pre-RFC 6381).
  142. // Look for "avc1.<profile>.<level>", where profile is:
  143. // 66 (baseline => 0x42)
  144. // 77 (main => 0x4d)
  145. // 100 (high => 0x64)
  146. // Reference: https://bit.ly/2K9JI3x
  147. const match = /avc1\.(66|77|100)\.(\d+)/.exec(mp4MimeType);
  148. if (match) {
  149. let newCodecString = 'avc1.';
  150. const profile = match[1];
  151. if (profile == '66') {
  152. newCodecString += '4200';
  153. } else if (profile == '77') {
  154. newCodecString += '4d00';
  155. } else {
  156. goog.asserts.assert(profile == '100',
  157. 'Legacy avc1 parsing code out of sync with regex!');
  158. newCodecString += '6400';
  159. }
  160. // Convert the level to hex and append to the codec string.
  161. const level = Number(match[2]);
  162. goog.asserts.assert(level < 256,
  163. 'Invalid legacy avc1 level number!');
  164. newCodecString += (level >> 4).toString(16);
  165. newCodecString += (level & 0xf).toString(16);
  166. mp4MimeType = mp4MimeType.replace(match[0], newCodecString);
  167. }
  168. return mp4MimeType;
  169. }
  170. /**
  171. * Returns the original mimetype of the transmuxer.
  172. * @return {string}
  173. */
  174. getOriginalMimeType() {
  175. return this.originalMimeType_;
  176. }
  177. /**
  178. * Transmux from Transport stream to MP4, using the mux.js library.
  179. * @param {BufferSource} data
  180. * @return {!Promise.<{data: !Uint8Array,
  181. * captions: !Array.<!muxjs.mp4.ClosedCaption>}>}
  182. */
  183. transmux(data) {
  184. goog.asserts.assert(this.muxTransmuxer_,
  185. 'mux.js should be available.');
  186. goog.asserts.assert(!this.isTransmuxing_,
  187. 'No transmuxing should be in progress.');
  188. this.isTransmuxing_ = true;
  189. this.transmuxPromise_ = new shaka.util.PublicPromise();
  190. this.transmuxedData_ = [];
  191. this.captions_ = [];
  192. const dataArray = shaka.util.BufferUtils.toUint8(data);
  193. this.muxTransmuxer_.push(dataArray);
  194. this.muxTransmuxer_.flush();
  195. // Workaround for https://bit.ly/Shaka1449 mux.js not
  196. // emitting 'data' and 'done' events.
  197. // mux.js code is synchronous, so if onTransmuxDone_ has
  198. // not been called by now, it's not going to be.
  199. // Treat it as a transmuxing failure and reject the promise.
  200. if (this.isTransmuxing_) {
  201. this.transmuxPromise_.reject(new shaka.util.Error(
  202. shaka.util.Error.Severity.CRITICAL,
  203. shaka.util.Error.Category.MEDIA,
  204. shaka.util.Error.Code.TRANSMUXING_FAILED));
  205. }
  206. return this.transmuxPromise_;
  207. }
  208. /**
  209. * Reset captions from Transport stream to MP4, using the mux.js library.
  210. */
  211. resetCaptions() {
  212. this.muxTransmuxer_.resetCaptions();
  213. }
  214. /**
  215. * Handles the 'data' event of the transmuxer.
  216. * Extracts the cues from the transmuxed segment, and adds them to an array.
  217. * Stores the transmuxed data in another array, to pass it back to
  218. * MediaSourceEngine, and append to the source buffer.
  219. *
  220. * @param {muxjs.mp4.Transmuxer.Segment} segment
  221. * @private
  222. */
  223. onTransmuxed_(segment) {
  224. this.captions_ = segment.captions;
  225. this.transmuxedData_.push(
  226. shaka.util.Uint8ArrayUtils.concat(segment.initSegment, segment.data));
  227. }
  228. /**
  229. * Handles the 'done' event of the transmuxer.
  230. * Resolves the transmux Promise, and returns the transmuxed data.
  231. * @private
  232. */
  233. onTransmuxDone_() {
  234. const output = {
  235. data: shaka.util.Uint8ArrayUtils.concat(...this.transmuxedData_),
  236. captions: this.captions_,
  237. };
  238. this.transmuxPromise_.resolve(output);
  239. this.isTransmuxing_ = false;
  240. }
  241. };