이것을 열고 닫습니다.
Mac OS X에서 모든 스테레오 출력을 모노로 다운 믹스하는 내장 된 방법이 있습니까?
답변
에서 설정을 수정하려고 com.apple.universalaccess.plist
했지만 적용 할 수 없습니다.
f=~/Library/Preferences/com.apple.universalaccess
sudo defaults write $f stereoAsMono -bool true
sudo chown $USER $f.plist
환경 설정을 전환하는 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"
답변
예, 범용 액세스에서 모노 변환을 활성화하는 옵션이 있습니다.
시스템 환경 설정> 범용 액세스> 청각> 스테레오를 모노로 재생하십시오.
여기서 답변을 찾았습니다 .
편집 2014-05-25 : Apple의 설명서에 설명 된대로 스테레오에서 모노 다운 믹스 옵션은 Mac OS X 10.9 Mavericks의 Accessabilty에서 찾을 수 있습니다 .
시스템 환경 설정> 손쉬운 사용> 청각> 오디오> 스테레오 오디오를 모노로 재생
iPhone 및 iPad의 iOS 7.1 에서는 스테레오에서 모노로의 변환 을 사용할 수 있습니다.
설정> 일반> 손쉬운 사용> 청각> 모노 오디오
답변
(오래된 게시물을 파기 위해 나를 용서하십시오 …)
Mac Os X Yosemite (매버릭스에서도)에서 접근성 창이 약간 다르며 위에 게시 된 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 window 1
end tell
quit application "System Preferences"
앱으로 저장하고 한 번의 클릭으로 한 번에 행복을 누리기 위해 독에 넣으십시오!