Apple Script Editor로 iTunes EQ 셋팅
맥은 자동화 툴로 오토메이터가 유명하지만, 스크립트를 좀 만질 줄 아는 사람이라면 애플 스크립트도 도움이 될 것이다.
아래 소개하는 방법은 애플 스크립트를 이용해 아이튠즈에 EQ를 설정하는 방법이다.
tell application "iTunes"
activate
set newPreset to make new EQ preset
set name of newPreset to "B&O Earphones"
set band 1 of newPreset to 2.5
set band 2 of newPreset to 2.9
set band 3 of newPreset to 2.2
set band 4 of newPreset to 1
set band 5 of newPreset to 0
set band 6 of newPreset to 0
set band 7 of newPreset to 1.3
set band 8 of newPreset to 1.6
set band 9 of newPreset to 3.1
set band 10 of newPreset to 7.2
set preamp of newPreset to 0
set current EQ preset to newPreset
end tell
위 코드를 (tell에서 밑의 tell까지를 드래그해 복사한 다음 스팟라이트로 'Apple Script Editor' 혹은 '애플스크립트'를 쳐서 앱을 열어, 붙여넣는다.
그런 다음에 상단의 삼각형 모양의 실행버튼을 누르면 아이튠즈에 등록된다.
등록된 EQ는 cmd + option + E를 누르거나 상단의 메뉴 > 윈도우에서 이퀄라이저를 통해 확인할 수 있다.