大学生akiの日常

都内某大学に通う理系大学生の日記。日常を発信します。

MENU

【MacOS Catalina対応】最強イコライザをミュージックで設定する

f:id:rikeidai_gakusei:20200507000412p:plain

macOSが更新されて、最新のCatalinaではiTunesが廃止されたようです。

代わりにiOSでおなじみ「ミュージック」というアプリケーションが採用されました。

 

この「ミュージック」で、有名な2つのイコライザ「Perfect」と「Eargasm Explosion」の設定方法を紹介します。

簡単に手動で設定する方法と、スクリプトによってぴったり設定する方法がありますが、今回は後者の方法をとりたいと思います。

 

 

「Perfect」の設定 

スクリプトエディタを開く

「Finder」の「アプリケーション」から、「スクリプトエディタ」を開きます。

(「アプリケーション」の中の「ユーティリティ」フォルダにある場合もあります。)

 

出てきたウィンドウの左下「新規書類」を押してエディタを開きます。

 

「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

 

実行画面

左上の実行ボタン「▶︎」を押して実行すれば、「Perfect」のイコライザ設定完了です。

以下の画面が表示されていればOK!

f:id:rikeidai_gakusei:20200507125238p:plain

 

「Eargasm Explosion」の設定

手順は「Perfect」と同様。スクリプトを変えるだけ!

「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

 これをエディタに貼り付けて実行すれば完了です!

 

EQを試してみると

 それぞれのイコライザを設定してみると、その名の通り「Perfect」は完璧なバランス、「Eargasm Explosion」は聴いていて耳が気持ち良くなるような音ですね。

好みに合わせて設定してみてください!

 

音が割れてしまう場合

使用しているスピーカー・ヘッドホン等によっては、音が割れてしまうことがあるかと思います。

そんなときは、「プリアンプ」を手動で下げてみる、もしくはスクリプトの15行目

set preamp of newPreset to ** 

 **のところをマイナスにしてみましょう。(例:-3)

これで音割れを軽減することができます。

 

ぜひ自分好みのイコライザを探してみてください!