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

WebAudioUtils.js 418B

1234567891011121314
  1. /**
  2. * Adapter that creates AudioContext objects depending on the browser.
  3. *
  4. * @returns {AudioContext} - Return a new AudioContext or undefined if the browser does not support it.
  5. */
  6. export function createAudioContext(options) {
  7. const AudioContextImpl = window.AudioContext || window.webkitAudioContext;
  8. if (!AudioContextImpl) {
  9. return undefined;
  10. }
  11. return new AudioContextImpl(options);
  12. }