Skip to content

Instantly share code, notes, and snippets.

@seandenigris
Created April 26, 2011 17:18
Show Gist options
  • Save seandenigris/942684 to your computer and use it in GitHub Desktop.
Save seandenigris/942684 to your computer and use it in GitHub Desktop.
iTunes: Change artist names
tell application "iTunes"
set wrongName to ""
set rightName to ""
set track_list to tracks of playlist "Music" of source "Library" whose artist is wrongName
repeat with t in track_list
set artist of t to rightName
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment