Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A 'perfect' iTunes equalizer setting' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A 'perfect' iTunes equalizer setting
Authored by: mhagen on Oct 08, '05 07:48:45AM
I realize it's not very Mac OS X, but here is the windows equivalent:

var iTunesApp = WScript.CreateObject("iTunes.Application");

iTunesApp.CurrentEQPreset.band1  = -3;
iTunesApp.CurrentEQPreset.band2  = 0;
iTunesApp.CurrentEQPreset.band3  = 3;
iTunesApp.CurrentEQPreset.band4  = 1;
iTunesApp.CurrentEQPreset.band5  = 0;
iTunesApp.CurrentEQPreset.band6  = -1;
iTunesApp.CurrentEQPreset.band7  = 1;
iTunesApp.CurrentEQPreset.band8  = 3;
iTunesApp.CurrentEQPreset.band9  = 6;
iTunesApp.CurrentEQPreset.band10 = 5;

iTunesApp.CurrentEQPreset.Preamp = 0;


[ Reply to This | # ]