您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CodecMimeType.ts 657B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Enumeration of the codec mime types
  3. * @type {{AV1: string, H264: string, OPUS: string, RED: string, ULPFEC: string, VP8: string, VP9: string}}
  4. */
  5. export enum CodecMimeType {
  6. /**
  7. * AV1 codec mime type.
  8. */
  9. AV1 = 'av1',
  10. /**
  11. * The h264 codec mime type.
  12. */
  13. H264 = 'h264',
  14. /**
  15. * The opus codec mime type.
  16. */
  17. OPUS = 'opus',
  18. /**
  19. * The red codec mime type.
  20. */
  21. RED = 'red',
  22. /**
  23. * The ulpfec codec mime type.
  24. */
  25. ULPFEC = 'ulpfec',
  26. /**
  27. * The vp8 codec mime type.
  28. */
  29. VP8 = 'vp8',
  30. /**
  31. * The vp9 codec mime type.
  32. */
  33. VP9 = 'vp9'
  34. }