阅读评级从ITunes,将其写入文件

时间:2015-01-10 23:11:14

标签: macos applescript osx-yosemite itunes id3

我在MacBook Pro上的iTunes中有歌曲,我从一开始到五星级。当我在我的DJ软件中打开歌曲时,它没有显示评级,因为iTunes不会将它们写入ID3标签,而只是将其保存在iTunes中。

我已经发现我可以通过这样做来阅读评分:

tell application "iTunes"
    set songRating to get rating of current track
end tell
return songRating

此外,我可以通过这样做获取位置:

tell application "iTunes"
    set songLocation to get location of current track
end tell
return songLocation

现在如何使用我所拥有的文件路径将评级写入文件的ID3标签?

1 个答案:

答案 0 :(得分:1)

您可以将评论标记设置为评级,该评级应该可以在第三方应用中阅读。

e.g,

tell application "iTunes"

    set comment of the current track to "rating:" & (get rating of current track)

end tell

评级是百分比值,即2星== 40。