三つ数えろ

労務管理 人事評価 組織設計

iTunes最強のイコライザ Eargasm Explosion ,Perfect をAppleScriptでビシッと設定する

イコライザー


 

最近、36回分割でMacBook Proを購入した筆者だが、macOSの設定をいじる(とても楽しい)、ブログを書く(月々の支払いのため/とくに楽しくない)のほかに何をするわけでもないため、今日はiTunes最強のイコライザとして名高い「Eargasm Explosion」「Perfect 」をAppleScriptでビシッと設定する方法を書くことにする。もちろんmacOS限定となる。

 

 

Eargasm Explosionとは

長らくiTunes最強のイコライザといえば「Perfect」一択だったイコライザ界隈に綺羅星のごとく現れたイコライザプリセット「Eargasm Explosion」。Eargasmというのはアレだ、耳が孕むというか、そんな感じ。説明は以下サイト等を参考に(外部リンク)。

 

kotonova.com

grapee.jp

 

さて、このプリセット、帯域ごとの設定値は公開されているものの(+3とか+6とか)、結局はイコライザ画像を見てそれっぽく設定してね、という感じで、B型のくせにこういうところだけ細かい筆者としては、その適当さを容認することが出来なかったため、スクリプトで設定する方法を調べてみた。

 

f:id:count3to1interrupt:20180327071657p:plain

こんな感じにせよという適当さ

 

設定手順

  1. スクリプトエディタアプリを起動する。
  2. スクリプトエリアに下記のスクリプトをコピペする。
  3. ▶︎クリックして実行する。

 

Eargasm Explosion用スクリプト

▼以下をコピー 

tell application "iTunes"
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

▲ここまで

 

実際には

こんな感じになればOK。

 

f:id:count3to1interrupt:20180407135108p:plain

すでにその名称でイコライザ設定がなされている場合、一度削除してから実行するか、newPreset to "X"のXの箇所を書き換えること。 

 

Perfect用スクリプト

▼ここから 

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

▲ここまで

 

効果のほどは

設定後にイコライザ iTunesのイコライザウインドウを表示させて、上記プリセットの選択とイコライザがONになっていることを確認。ON /OFFをしてみると確かにイコライザされてることが実感できる(頭悪い)。