是否有一个热键可以使用或配置来使 13 英寸 MacBook Pro (MPB) 上的麦克风静音?
我更喜欢一个图标或通知来确认它已设置(即使我需要切换选项)。
答案1
您可以简单地Alt单击菜单栏中的声音/扬声器图标,然后选择Line In
作为输入设备来使麦克风静音。
当您想要恢复时,只需Internal microphone
再次选择即可。
答案2
以下是如何在 Automator 中将脚本保存为服务并在“系统偏好设置”中为其分配热键。
这是通过显示通知来静音/取消静音的脚本(从 tkneis 的答案扩展而来)。
on run {input, parameters}
set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
set inputVolume to 100
set displayNotification to "Microphone Unmuted"
else
set inputVolume to 0
set displayNotification to "Microphone Muted"
end if
set volume input volume inputVolume
display notification displayNotification
delay 1
return input
end run
答案3
这是最有效的,特别是当您想将此脚本分配给热键时:
set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
set inputVolume to 100
else
set inputVolume to 0
end if
set volume input volume inputVolume
此方法不需要您激活系统偏好设置 GUI,也不需要查看任何活动应用程序的音量设置。相反,它会获取系统的音量设置,然后检查输入音量是否已经为 0——如果是,它会将输入音量设置为 100,如果不是,它会将输入音量静音。
奇迹般有效。