Friday 1 December 2017

macos - How to downmix stereo output to mono on Mac OS X


Let's just open and close this:


Is there a built in way to downmix all stereo output to mono on Mac OS X?



Answer



enter image description here




I tried modifying the setting in com.apple.universalaccess.plist, but couldn't get it to take effect:


f=~/Library/Preferences/com.apple.universalaccess
sudo defaults write $f stereoAsMono -bool true
sudo chown $USER $f.plist



An AppleScript that toggles the preference:


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"

No comments:

Post a Comment

Where does Skype save my contact's avatars in Linux?

I'm using Skype on Linux. Where can I find images cached by skype of my contact's avatars? Answer I wanted to get those Skype avat...