Source: lib/util/mime_utils.js

  1. /**
  2. * @license
  3. * Copyright 2016 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. goog.provide('shaka.util.MimeUtils');
  18. /**
  19. * @summary A set of utility functions for dealing with MIME types.
  20. */
  21. shaka.util.MimeUtils = class {
  22. /**
  23. * Takes a MIME type and optional codecs string and produces the full MIME
  24. * type.
  25. *
  26. * @param {string} mimeType
  27. * @param {string=} codecs
  28. * @return {string}
  29. */
  30. static getFullType(mimeType, codecs) {
  31. let fullMimeType = mimeType;
  32. if (codecs) {
  33. fullMimeType += '; codecs="' + codecs + '"';
  34. }
  35. return fullMimeType;
  36. }
  37. /**
  38. * Takes a Stream object and produces an extended MIME type with information
  39. * beyond the container and codec type, when available.
  40. *
  41. * @param {shakaExtern.Stream} stream
  42. * @return {string}
  43. */
  44. static getExtendedType(stream) {
  45. const components = [stream.mimeType];
  46. const extendedMimeParams = shaka.util.MimeUtils.EXTENDED_MIME_PARAMETERS_;
  47. extendedMimeParams.forEach((mimeKey, streamKey) => {
  48. const value = stream[streamKey];
  49. if (value) {
  50. components.push(mimeKey + '="' + value + '"');
  51. }
  52. });
  53. return components.join(';');
  54. }
  55. /**
  56. * Split a list of codecs encoded in a string into a list of codecs.
  57. * @param {string} codecs
  58. * @return {!Array.<string>}
  59. */
  60. static splitCodecs(codecs) {
  61. return codecs.split(',');
  62. }
  63. /**
  64. * Get the base codec from a codec string.
  65. *
  66. * @param {string} codecString
  67. * @return {string}
  68. */
  69. static getCodecBase(codecString) {
  70. const parts = shaka.util.MimeUtils.getCodecParts_(codecString);
  71. return parts[0];
  72. }
  73. /**
  74. * Get the base and profile of a codec string. Where [0] will be the codec
  75. * base and [1] will be the profile.
  76. * @param {string} codecString
  77. * @return {!Array.<string>}
  78. * @private
  79. */
  80. static getCodecParts_(codecString) {
  81. const parts = codecString.split('.');
  82. const base = parts[0];
  83. parts.pop();
  84. const profile = parts.join('.');
  85. // Make sure that we always return a "base" and "profile".
  86. return [base, profile];
  87. }
  88. };
  89. /**
  90. * A map from Stream object keys to MIME type parameters. These should be
  91. * ignored by platforms that do not recognize them.
  92. *
  93. * This initial set of parameters are all recognized by Chromecast.
  94. *
  95. * @const {!Map.<string, string>}
  96. * @private
  97. */
  98. shaka.util.MimeUtils.EXTENDED_MIME_PARAMETERS_ = new Map()
  99. .set('codecs', 'codecs')
  100. .set('frameRate', 'framerate') // Ours is camelCase, theirs is lowercase.
  101. .set('bandwidth', 'bitrate') // They are in the same units: bits/sec.
  102. .set('width', 'width')
  103. .set('height', 'height')
  104. .set('channelsCount', 'channels');
  105. /**
  106. * A mimetype created for CEA closed captions.
  107. * @const {string}
  108. */
  109. shaka.util.MimeUtils.CLOSED_CAPTION_MIMETYPE = 'application/cea-608';