gpt4 book ai didi

audio - 音频上下文未恢复

转载 作者:行者123 更新时间:2023-12-03 01:32:46 36 4
gpt4 key购买 nike

我正在使用网络音频API,并且正在遵循以下代码
https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/suspend
恢复和暂停音频上下文。暂停部分正在工作,但暂停后我无法恢复。

window.AudioContext = window.AudioContext || window.webkitAudioContext;
navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia;
window.URL = window.URL || window.webkitURL;

// Store the instance of AudioContext globally
audio_context = new AudioContext;

if(audio_context.state === 'running') {
audio_context.suspend();

} else if(audio_context.state === 'suspended') {
alert("Resumed");
//audio_context.resume();

audio_context.resume().then(function() {
// susresBtn.textContent = 'Suspend context';
});
}

最佳答案

弄清楚了,这必须来自用户交互,例如单击按钮

关于audio - 音频上下文未恢复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56193969/

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