iTunes のイコライザ

JAM LOG さんのところで、「iTunesのイコライザのパーフェクト設定」なる記事を見て衝動的に作ってしまいました。

Script Editor で開く

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
    --preamp is -6.0?
    set preamp of newPreset to -6
    set current EQ preset to newPreset
end tell

JAM LOG さんのところから MacBSの日常生活的日記さんをのぞいて、結果、プリアンプも設定しています。どちらがいいかは聞く人次第。

確かに音がくっきりとしますね。

0 件のコメント :

コメントを投稿