Bulk remove those pesky "(Original Mix)" suffixes from every track in your iTunes library, so that they scrobble better to Last.fm
- python3 -mvenv unoriginator
- . ./unoriginator/bin/activate
- pip install mutagen
- ./unoriginator.py
- Make a Smart Playlist of "any of the following":
ends with `(original mix)` ends with `(original)` ends with `- original mix` ends with `- original`
- Select all the tracks
EITHER
- Get Song Info
- Change something minor, such as toggling the "Compilation of songs by different artists" flag
OR
- Follow the guide here to create a 'Refresh' menu option in iTunes (Mac only)
Pre Catalina:
Put the following into a file named
/Library/iTunes/Scripts/Refresh.scpt
tell application "iTunes" repeat with aTrack in selection try refresh aTrack end try end repeat end tell
Catalina or later:
Put the following into a file named
/Library/Music/Scripts/Refresh.scpt
tell application "Music" repeat with aTrack in selection try refresh aTrack end try end repeat end tell
Copyright 2020 Ben XO https://github.com/ben-xo/unoriginator