'AudioContext'类型中不存在属性'createMediaStreamDestination'

时间:2017-08-10 05:00:42

标签: audiocontext

尝试通过音频标记从文件中获取流时,我遇到了上述错误。

     this.audioElement = document.getElementById('audioSend');
     var audioCtx = new AudioContext();
     var source = audioCtx.createMediaElementSource(this.audioElement);
     var dst  = audioCtx.createMediaStreamDestination();

1 个答案:

答案 0 :(得分:0)

以下浏览器支持createMediaStreamDestination():

自10.0以来的Chrome

Firefox 25.0以来

自6.0以来的Safari

Opera自15.0以来

但不是IE也不是Edge。

来源: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode

缺乏对Edge的支持有点奇怪,因为它在他们的网站上有记录:

https://msdn.microsoft.com/en-us/library/dn954877(v=vs.85).aspx

您要定位哪种浏览器?