Am I still able to manually set Album Rating on Apple Music?

I used to be able to manually set the album rating on the Music program for Mac. For example, I could give an album a rating of 4 stars. This was independent of the individual song ratings. Now I don't see anywhere to do that, and I've searched online for a while without finding any helpful information. The albums I rated in the past even still have the non-gray-star ratings I set. So is there a way for me to still give album ratings? And yes, I'm aware they will automatically be rated based on the song ratings, but I'd like to be able to set the rating myself.

Running MacOS 14.6.1, Music 1.4.6.32

MacBook Pro 13″, macOS 14.6

Posted on Feb 20, 2025 10:17 AM

Reply

Similar questions

8 replies

Mar 4, 2025 03:44 PM in response to turingtest2

I tried the half-star thing and it didn't seem to help.


I do think I figured out a weird fix, though, in terms of being able to set the album rating. Using your Handling grey stars in Music on Mac - Apple Community link you sent a while back, if you follow your exact same directions but change the script code and filenames slightly, you can make a series of scripts that you can run from the Music menu bar to set the album rating for selected songs. The filenames are just a suggestion. You only need to do this for one song in a given album, and it will automatically set the rating of the entire album.


-- Filename "SetAlbumRating0.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 0
    end repeat
   end if
end tell


-- Filename "SetAlbumRating1.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 20
    end repeat
   end if
end tell


-- Filename "SetAlbumRating2.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 40
    end repeat
   end if
end tell


-- Filename "SetAlbumRating3.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 60
    end repeat
   end if
end tell


-- Filename "SetAlbumRating4.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 80
    end repeat
   end if
end tell


-- Filename "SetAlbumRating5.scpt"
tell application "Music"
  if selection is not {} then
    set mySelection to selection
    repeat with aTrack in mySelection
      set album rating of aTrack to 100
    end repeat
   end if
end tell

Mar 4, 2025 12:58 PM in response to musicandfilms

Hmm. I don't know why that option isn't there. I seem to recall some discussion about rating stars only being available to those using the Apple Music subscription service, but that seems like an odd limitation if deliberate so I'm inclined to think this is an accidental bug. I'm sure there ought to be a way to enable stars via some command line incantation, but I cannot track it down. In lieu of that perhaps this one to enable half-stars will do the trick. See How can I enable half-star ratings in.Seq… - Apple Community and give it a try.


tt2

Feb 21, 2025 02:41 PM in response to turingtest2

I've looked everywhere around every type of view I can find, and I don't see a way to set the album rating. I'm attaching a screen shot of a random album view, to confirm that's what you mean, and nowhere around there can I see a way to set the album rating. For the record, I don't care about suppressing automatic album ratings, I just want to know if I can still set the album rating myself.

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Am I still able to manually set Album Rating on Apple Music?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.