问题描述
是否可以通过 createMediaElementSource
从< audio />
-element加载音频文件,然后再将音频数据加载到 AudioBufferSourceNode ?
Is it possible to have an audiofile loaded from <audio/>
-element via createMediaElementSource
and then load the audio data into a AudioBufferSourceNode?
使用audio-element作为源(MediaElementSource)似乎不是一个选项,因为我想使用缓冲区方法,如 noteOn
和 noteGrain
。
不幸的是,不能通过XHR将音频文件直接加载到缓冲区
(参见
尽管可以从音频元素加载缓冲区内容:
Loading the buffer contents from the audio elements seems to be possible though:
或者甚至可以直接使用< audio />
-element作为sourceNode? p>
Or is it even possible to directly use the buffer of an <audio/>
-element as a sourceNode?
推荐答案
好像无法从MediaElementSourceNode中提取audiobuffer。
Seems as if it's not possible to extract the audiobuffer from an MediaElementSourceNode.
参见
非常欢迎任何证明我错误的回复!
Any reply proving me wrong is very welcome!
这篇关于将audiodata从< audio />加载到AudioBufferSourceNode中元素通过createMediaElementSource?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!