Skip to content

Instantly share code, notes, and snippets.

@pdxmph
Created August 9, 2019 19:39
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 pdxmph/b74bac9f17dd532bb7c9ace4dc5604fe to your computer and use it in GitHub Desktop.
Save pdxmph/b74bac9f17dd532bb7c9ace4dc5604fe to your computer and use it in GitHub Desktop.
Make the tracks in a playlist louder (experimental)
tell application "iTunes"
set myList to the user playlist "Ride"
set myTracks to the file tracks of myList
repeat with theTrack in myTracks
tell theTrack
set the volume adjustment to "75"
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment