Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在硬件上记录当前正在混合的音频(可能来自另一个选项卡/进程)?有没有办法输入/连接到浏览器混音器?
工作室硬件通常有几个输入/输出通道,单声道和/或立体声;有没有办法让这些连接到图表上?是否有/将有一些设备枚举 api?
您可能能够做的最接近的事情是从麦克风获取数据,并将系统麦克风设置为系统的输出(在 Windows 中...管理音频设备 > 录音 > 立体声混音)。然后只是getUserMedia用来获取音频。
getUserMedia
navigator.webkitGetUserMedia({audio: true}, function(stream) { var microphone = context.createMediaStreamSource(stream); });