gpt4 book ai didi

html - 播放base64音频数据数组

转载 作者:行者123 更新时间:2023-12-03 00:26:01 25 4
gpt4 key购买 nike

我正在使用JavaScript解析SWF文件并在HTML5 Canvas 中显示内容。

我在播放来自音频流swf标签的音频数据时遇到问题。音频按帧分割,我可以将音频数据按与帧相同的顺序放入base64数据数组中。在每个帧上创建/销毁音频元素似乎并不是解决问题的最佳方法,但这是我能想到的唯一方法。有没有更好的方法来解决这个问题?

注意:swf文件中也有快退/快进/暂停按钮,因此音频在发送回时将需要与帧对齐,因此我不相信我只能从较小的文件中创建一个长音频文件数据位。

最佳答案

您将需要将这些音频文件加载为AudioBuffers并通过Web Audio API播放它们。

您目前拥有的是数据URL,它们确实表示完整的音频文件(带有元数据)。
because some browsers may not let you do so开始,将所有这些都加载到Audio元素中可能确实不是一个好主意,因为HTMLMediaElement并不适合完美的计时。

因此,您将需要首先获取所有这些数据URL,以在ArrayBuffers中获取其实际二进制内容,然后才能从这些音频文件中提取原始PCM音频数据。

// would be the same with data-URLs
const urls = [
"kbgd2jm7ezk3u3x/hihat.mp3",
"h2j6vm17r07jf03/snare.mp3",
"1cdwpm3gca9mlo0/kick.mp3",
"h8pvqqol3ovyle8/tom.mp3"
].map( (path) => 'https://dl.dropboxusercontent.com/s/' + path );
const audio_ctx = new AudioContext();

Promise.all( urls.map( toAudioBuffer ) )
.then( activateBtn )
.catch( console.error );

async function toAudioBuffer( url ) {
const resp = await fetch( url );
const arr_buffer = await resp.arrayBuffer();
return audio_ctx.decodeAudioData( arr_buffer );
}

function activateBtn( audio_buffers ) {
const btn = document.getElementById( 'btn' );
btn.onclick = playInSequence;
btn.disabled = false;
// simply play one after the other
// you could add your own logic of course
async function playInSequence() {
await audio_ctx.resume(); // to make noise we need to be allowed by a user gesture

let current = 0;
while( current < audio_buffers.length ) {
// create a bufferSourceNode, no worry, it weights nothing
const source = audio_ctx.createBufferSource();
source.buffer = audio_buffers[ current ];
// so it makes noise
source.connect( audio_ctx.destination );

// [optional] promisify
const will_stop = new Promise( (res) => source.onended = res );

source.start(0); // start playing now

await will_stop;
current ++;
}
}
}
<button id="btn" disabled>play all in sequence</button>

关于html - 播放base64音频数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59062187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com