You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CodecMimeType.js 375B

123456789101112131415161718192021222324
  1. /* global module */
  2. /**
  3. * Enumeration of the codec mime types
  4. * @type {{H264: string, VP8: string, VP9: string}}
  5. */
  6. const CodecMimeType = {
  7. /**
  8. * The h264 codec mime type
  9. */
  10. H264: 'h264',
  11. /**
  12. * The vp8 codec mime type.
  13. */
  14. VP8: 'vp8',
  15. /**
  16. * The vp9 codec mime type.
  17. */
  18. VP9: 'vp9'
  19. };
  20. module.exports = CodecMimeType;