見出し画像

iTunesのイコライザ設定PerfectのAppleScript

自分用の備忘録。

iTunesのイコライザ設定を定番の「Perfect」にするのに、手動でスライダーを左から順に+3、+6、+9、+7、+6、+5、+7、+9、+11、+8とあわせるのは大変なので、AppleScriptで設定します。

アプリケーション」→「ユーティリティ」を選択し、「スクリプトエディタ」を開き、

tell application "iTunes"
activate
set newPreset to make new EQ preset
set name of newPreset to “Perfect”
set band 1 of newPreset to 3
set band 2 of newPreset to 6
set band 3 of newPreset to 9
set band 4 of newPreset to 7
set band 5 of newPreset to 6
set band 6 of newPreset to 5
set band 7 of newPreset to 7
set band 8 of newPreset to 9
set band 9 of newPreset to 11
set band 10 of newPreset to 8
set preamp of newPreset to 0
set current EQ preset to newPreset
end tell

上の文章をコピーしてエリアに貼り付けて、左から3番目にある再生ボタンを押せば完了。

iPhoneのアプリ、ミュージックのイコライザ設定はデフォルトがオフなので、

設定→ミュージック→イコライザの中にありますよ。全23種類。

この記事が参加している募集

おうち時間を工夫で楽しく

この記事が気に入ったらサポートをしてみませんか?