Chrome扩展程序webAudio API会停止Windows省电模式

时间:2016-03-23 22:12:02

标签: javascript hibernate google-chrome google-chrome-extension html5-audio

我的Chrome扩展程序有问题。该扩展创建一个audioContext,使用以下代码连接到背景页面上的<audio>标记。在音频端onClick(),调用kill函数。

播放时我在Windows系统上执行[DRIVER] High Definition Audio Device (HDAUDIO\FUNC_01&VEN_111D&DEV_76D5&SUBSYS_1028040A&REV_1001\4&143c5ca7&0&0001) An audio stream is currently in use.时看到(预期)powercfg -requests。但是当调用kill函数时,我仍然看到使用相同的驱动程序消息,并且机器不会挂起/ sleep / hibernate。

在检查背景页面时,列出的变量 - 所有与音频相关的变量 - 都是未定义的。到目前为止,我发现的唯一方法是重新加载背景页面 - 一个超级黑客,我鄙视它所代表的一切。

任何有类似经验或知道chrome webaudio API内心恶魔的人?

注意事项: 变量在演示代码的上下文中是全局的。在实时代码中,这些是本地范围。

干杯, 菲尔。

function kill_audio_context(){
    capAudio.remove();
    capAudio = undefined;
    try{
        analyser.disconnect();
        source.disconnect();
        audioContext = undefined;
        source=undefined; 
        analyser=undefined;
    }catch(e){console.log(e)} 
    // No errors, except expected when no audio element exists (first load)

    // KILL IT WITH FIRE!!
    //chrome.runtime.reload();
}
function load_audio_context(){
    audioContext = new AudioContext();
    analyser = audioContext.createAnalyser();
    analyser.fftSize = 2048;
    source = audioContext.createMediaElementSource(capAudio);
    source.connect(analyser);
    analyser.connect(audioContext.destination);
}

1 个答案:

答案 0 :(得分:1)

如果要发布AudioContext,请致电audioContext.close()