Created
April 26, 2011 17:18
-
-
Save seandenigris/942684 to your computer and use it in GitHub Desktop.
iTunes: Change artist names
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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