aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/notifyaudioavailableevent/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/api/notifyaudioavailableevent/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/api/notifyaudioavailableevent/index.html')
-rw-r--r--files/zh-cn/web/api/notifyaudioavailableevent/index.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/files/zh-cn/web/api/notifyaudioavailableevent/index.html b/files/zh-cn/web/api/notifyaudioavailableevent/index.html
new file mode 100644
index 0000000000..dc167c822a
--- /dev/null
+++ b/files/zh-cn/web/api/notifyaudioavailableevent/index.html
@@ -0,0 +1,21 @@
+---
+title: NotifyAudioAvailableEvent
+slug: Web/API/NotifyAudioAvailableEvent
+translation_of: Web/API/NotifyAudioAvailableEvent
+---
+<p>{{APIRef("Web Audio API")}}{{Non-standard_header}}{{Deprecated_header}}</p>
+
+<p>非标准的、过时的,<code><strong>NotifyAudioAvailableEvent</strong></code>事件接口定义当音频缓冲器满时发送到音频元素的事件。</p>
+
+<p> </p>
+
+<h2 id="属性">属性</h2>
+
+<div id="section_2">
+<dl>
+ <dt><code>frameBuffer</code> {{ReadOnlyInline}}</dt>
+ <dd>{{jsxref("Float32Array")}}包含从解码音频获得的原始32位浮点音频数据(例如,原始数据被发送到音频硬件与编码音频)。数据是一系列音频样本,每个样本每个音频通道包含一个32位值。默认情况下,所有音频帧被标准化为包含1024个样本,但如果用户使用<code><strong>mozFrameBufferLength</strong></code>属性设置了不同长度,则可以是512到16384个样本之间的任何长度。</dd>
+ <dt><code>time</code></dt>
+ <dd>一个浮点值,代表音频轨道开始后的<code>frameBuffer</code>数组中第一个样本的时间(以秒为单位)。</dd>
+</dl>
+</div>