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 438B

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