Skip to content

Instantly share code, notes, and snippets.

@mbierman
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save mbierman/3bb96611088613d9b7e4 to your computer and use it in GitHub Desktop.

Select an option

Save mbierman/3bb96611088613d9b7e4 to your computer and use it in GitHub Desktop.
Set iTunes equalizer via AppleScript
set asrc to (choose from list {"Acoustic", "Bass Booster", "Classical", "Deep", "Flat", "Latin", "Lounge", "Piano", "Pop", "R&B", "Rock", "Small Speakers", "Spoken Word", "Vocal Booster"} with title "Equalizer" default items {"Flat"}) as text
if result is "false" then return
tell application "iTunes"
set the current EQ preset to EQ preset asrc
end tell
@mbierman
Copy link
Author

mbierman commented Oct 8, 2014

iTunes equalizer setting via AppleScript

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment