gpt4 book ai didi

discord - 如何在 discord 上获取我的麦克风状态

转载 作者:行者123 更新时间:2023-12-05 07:02:41 30 4
gpt4 key购买 nike

我正在为桌面创建灯,当我的麦克风在 Discord 上处于事件状态时,该灯将为绿色,当我的麦克风静音时,该灯将为红色。所以我想从不和谐中获取我的麦克风状态。但我不知道怎么做。

  1. 当我不在进行语音聊天时,如何从 discord 获取我的麦克风状态?

我知道在进行语音聊天时如何获取麦克风状态,但我想一直获取此信息。

谢谢。

最佳答案

您可以使用 Client#voiceStateUpdate检测您何时更改是否静音。

client.on('voiceStateUpdate', (oldState, newState) => {
if (oldState.member.user.id !== "youridhere") return // make sure its only checking for your microhpone
if (newState.mute) { // check if mic is muted
setLightColor("red") //if true make light red
} else {
setLightColor("green") //if false make light green
}
})

关于discord - 如何在 discord 上获取我的麦克风状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63491532/

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