网络音频api振荡器将无法在Firefox中播放

时间:2016-02-01 07:38:26

标签: javascript firefox audio

我在Ubuntu 15.04上使用firefox 44.0,由于某些原因,我无法使用振荡器播放声音。

<!DOCTYPE html>
<html>
  <head>
    <title>Web Audio API</title>
  </head>
  <body>
     <h1>Welcome to the Web Audio API</h1>
    <script>
      // create the audio context

      var audioCtx = new (window.AudioContext || window.webkit.AudioContext)();

      var osc = audioCtx.createOscillator();
      osc.connect(audioCtx.destination);
      osc.type = 'sine';
      osc.frequency.value = 250;
      osc.start(0);
      osc.stop(1);

    </script>
  </body>
</html>

这可以在Chrome浏览器下运行,但在firefox上没有播放声音。这是firefox还是linux的问题?任何帮助表示赞赏。

0 个答案:

没有答案