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.
我正在用 chrome 玩基于画布的游戏。没有静音选项,我正在尝试查找音频源。它不是闪光灯,也不是音频标签。还有哪些其他东西可以在 chrome 中产生声音,我怎样才能找到它?
它可能使用 Web Audio API(不同于 HTML5 Audio API)。new AudioContext()在javascript中寻找类似的东西。您也可以尝试搜索 javascript,.destination因为那将是音频实际连接到 AudioContext 的目的地(即扬声器)的位置。
new AudioContext()
.destination
new Audio()在源代码中查找对象声明。它是 HTML5 音频 API。
new Audio()