Apple Music API - 搜索歌曲并创建播放列表(MacOS)

时间:2016-07-30 16:39:07

标签: applescript itunes apple-music

我正在寻找可以执行这些任务的API

  • 在Apple Music中搜索歌曲
  • 创建播放列表
  • 将歌曲添加到播放列表

提前致谢。

1 个答案:

答案 0 :(得分:0)

我担心你要求做的事情,目前不可能 从iTunes 12.2开始我们只能搜索本地图书馆而不是整个Apple Music API

如果您有想要在图书馆内播放的歌曲(本地或云端),您可以搜索和播放这样的歌曲:

tell application "iTunes"
    set results to (every track whose name contains "Cumuli" and artist is "883")
    repeat with tune in results
        play tune
    end repeat
end tell

然后您可以将检索到的曲调放在所需的播放列表中,或者创建一个新曲目。看看this post for an example