From 8f9edbe206510a7869054ea4bbb770a7a55841b9 Mon Sep 17 00:00:00 2001 From: Zhanghao Date: Thu, 23 Nov 2023 13:06:13 +0800 Subject: [PATCH] Update files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md Co-authored-by: Jason Ren <40999116+jasonren0403@users.noreply.github.com> --- files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md b/files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md index da2c28318c7eef..6a43f431eab8f0 100644 --- a/files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md +++ b/files/zh-cn/web/api/baseaudiocontext/createanalyser/index.md @@ -28,7 +28,7 @@ createAnalyser() ## 示例 -下面的例子展示了 AudioContext 创建分析器节点的基本用法,然后用 requestAnimationFrame() 来反复获取时域数据,并绘制出当前音频输入的“示波器风格”输出。更多完整示例/信息请查看 [Voice-change-O-matic](https://mdn.github.io/voice-change-o-matic/) 实例(参阅 [app.js 的 108-193 行](https://github.com/mdn/webaudio-examples/tree/main/voice-change-o-matic/scripts/app.js#L108-L193)代码)。 +下面的示例展示了 AudioContext 创建分析器节点的基本用法,然后用 requestAnimationFrame() 来反复获取时域数据,并绘制出当前音频输入的“示波器风格”输出。更多完整示例/信息请查看 [Voice-change-O-matic](https://mdn.github.io/voice-change-o-matic/) 实例(参阅 [app.js 的 108-193 行](https://github.com/mdn/webaudio-examples/tree/main/voice-change-o-matic/scripts/app.js#L108-L193)代码)。 ```js const audioCtx = new (window.AudioContext || window.webkitAudioContext)();