如何在 Mac OS X 上将立体声输出缩混为单声道

nyb*_*rgh 12 audio mono stereo conversion macos

让我们打开和关闭它:

在 Mac OS X 上是否有内置的方法将所有立体声输出缩混为单声道?

Lri*_*Lri 14

在此处输入图片说明


我尝试修改 中的设置com.apple.universalaccess.plist,但无法使其生效:

f=~/Library/Preferences/com.apple.universalaccess
sudo defaults write $f stereoAsMono -bool true
sudo chown $USER $f.plist
Run Code Online (Sandbox Code Playgroud)

切换首选项的 AppleScript:

tell application "System Preferences"
    activate
    reveal anchor "Hearing" of pane id "com.apple.preference.universalaccess"
end tell
tell application "System Events" to tell process "System Preferences"
    click checkbox 2 of tab group 1 of window 1
end tell
quit application "System Preferences"
Run Code Online (Sandbox Code Playgroud)