How to unrate multiple album ratings at the same time

albumautomationitunesratings

I'm using iTunes 12.2.1.16 and today I realized that there is something called 'album rating'. This messes up my ordering according to the track rating. Suddenly there are songs appearing with hollow stars that I never rated.

I found out that this is the automatic album rating from iTunes. So far so bad. I also managed to disable it for one album.

But how can I unrate my entire library? In the album view I can select multiple albums, but not set the album rating…

iTunes driving me crazy again…

It's about deleting the album rating, not the track rating.

Best Answer

I was looking to do the same thing the OP requested here. This was my solution:

Open the Music app (formerly iTunes in macOS 10.14 and earlier) and do one of the following:

  • create a new smart playlist with the criteria that album rating does not equal zero stars (the star to the left of the first star) then open up that smart playlist and select all the songs therein
  • sort tracks by album rating and select all the songs that have a non-zero album rating.

Next, open up Script Editor.app and paste in the following script:

tell application "Music"
    repeat with theSong in selection
        set album rating of theSong to 0
    end repeat
end tell

You may need to run it more than once as it may fail as the selection changes while songs are being removed from the smart playlist. After a successful execution, all manual album ratings will be removed. Some albums may still have grayed out ratings: these are from the song ratings themselves and aren't actually album ratings.