1
使用Applescript将BPM和星级评级复制到iTunes中的评论
我想要一个AppleScript来获取所选MP3组的BPM和星级,并将信息粘贴到评论部分。 我发现这个代码可以一次复制一个轨道的星级,但我不知道它足以修改它来做一组选定的轨道并抓住BPM。 tell application "iTunes" set theTrack to (item 1 of (get selection)) set theRating to rating of theTrack if theRating = 100 then set comment of theTrack to "5 Star" else if theRating ≥ 80 then set comment of theTrack to "4 Star" else if theRating ≥ 60 then …