Skip to content

Instantly share code, notes, and snippets.

@joneskoo
Created January 27, 2024 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joneskoo/115f37d8afc84d490f753bec184d4837 to your computer and use it in GitHub Desktop.
Save joneskoo/115f37d8afc84d490f753bec184d4837 to your computer and use it in GitHub Desktop.
Sennheiser HD595 AutoEQ settings for Apple Music
// https://autoeq.app
// Sennheiser HD595 / iTunes Built-in equalizer
tell application "Music"
activate
set newPreset to make new EQ preset
set name of newPreset to "Sennheiser HD595"
set band 1 of newPreset to 12
set band 2 of newPreset to 4.8
set band 3 of newPreset to -0.1
set band 4 of newPreset to -2.5
set band 5 of newPreset to -0.5
set band 6 of newPreset to -2.1
set band 7 of newPreset to 1.7
set band 8 of newPreset to 0.2
set band 9 of newPreset to 4.0
set band 10 of newPreset to -1.9
set preamp of newPreset to -13
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment