QWERTY患者(完治)の日記

DAPやイヤホン、カメラ関連についてだらだらと書いています。

【Mac】ミュージックアプリのイコライザーを設定する。

以前よりiTunesMusicのイコライザー設定はしていましたが、数値を正確に設定したくなり検索しました。
↓こちらのサイトを参考にさせていただきました。
fundo.jp

ユーティリティのスクリプトエディタを使用し、正確な数値を設定するというものです。
早速スクリプトエディタを起動し、上記サイトの「Perfect」「Eargasm Explosion」の設定をコピペし、▶をクリック。
f:id:myzwtk:20190413070217j:plain

なんでやねん!!

よく見てみたら、ダブルクォーテーション(")が全角になっているようでした。
改めて入力し直したら…

ドン!

f:id:myzwtk:20190413071054j:plain

ドン!

f:id:myzwtk:20190413070959j:plain

正確に設定できました。
念のため、以下に修正版のスクリプトを貼っておきます。

<Perfect>
tell application "Music"
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

<Eargasm Explosion>
tell application "Music"
activate
set newPreset to make new EQ preset
set name of newPreset to "Eargasm Explosion"
set band 1 of newPreset to 3
set band 2 of newPreset to 6
set band 3 of newPreset to 9.5
set band 4 of newPreset to 7.5
set band 5 of newPreset to 6
set band 6 of newPreset to 5.5
set band 7 of newPreset to 7
set band 8 of newPreset to 4
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

参考になれば幸いです。
以上