Mozilla 的音频

发布于 2024-11-08 13:53:05 字数 856 浏览 0 评论 0原文

我直接从 Mozilla 获取此示例。

<!doctype html>
<html>
<head>
<title>Generating audio in real time</title>
<script type="text/javascript">
function playTone() {
    var output = new Audio();
    output.mozSetup(1, 44100);
    var samples = new Float32Array(22050);
    var len = samples.length;

    for (var i = 0; i < samples.length ; i++) {
        samples[i] = Math.sin( i / 20 );
    }
    output.mozWriteAudio(samples);
}
</script>
</head>
<body>
<p>This demo plays a one second tone when you click the button below.</p>
<button onclick="playTone();">Play</button>
</body>
</html>

Firefox 3.6.17,Firebug 说:output.mozSetup 不是一个函数。

I'm getting this example straight from Mozilla.

<!doctype html>
<html>
<head>
<title>Generating audio in real time</title>
<script type="text/javascript">
function playTone() {
    var output = new Audio();
    output.mozSetup(1, 44100);
    var samples = new Float32Array(22050);
    var len = samples.length;

    for (var i = 0; i < samples.length ; i++) {
        samples[i] = Math.sin( i / 20 );
    }
    output.mozWriteAudio(samples);
}
</script>
</head>
<body>
<p>This demo plays a one second tone when you click the button below.</p>
<button onclick="playTone();">Play</button>
</body>
</html>

Firefox 3.6.17, Firebug is saying: output.mozSetup is not a function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心头的小情儿 2024-11-15 13:53:05

mozSetup 和 mozWriteAudio 需要 Firefox 4。

根据此页面,这些方法被标记为 [Requires Gecko 2.0][非标准]。 Gecko 2.0 首次在 Firefox 4.0 中使用。

mozSetup and mozWriteAudio need Firefox 4.

According to this page, those methods are marked as [Requires Gecko 2.0] [Non-standard]. Gecko 2.0 was first used in Firefox 4.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文