Je veux un script Apple pour récupérer le BPM et la note d'un groupe sélectionné de MP3 et coller les informations dans la section des commentaires.
J'ai trouvé ce code qui copiera la note une piste à la fois mais je ne connais pas suffisamment AppleScript pour le modifier pour faire un groupe de pistes sélectionnées et également récupérer le BPM.
tell application "iTunes"
set theTrack to (élément 1 de (get selection))
set theRating to rating of theTrack
if theRating = 100 then
set comment of theTrack to "5 étoiles"
else if theRating 80 then
set comment of theTrack to "4 étoiles"
else if theRating 60 then
set comment of theTrack to "3 étoiles"
else if theRating 40 then
set comment of theTrack to "2 étoiles"
else if theRating 20 then
set comment of theTrack to "1 étoile"
else if theRating = 0 then
set comment of theTrack to "0 étoile"
end if
end tell