我正在寻找可以执行这些任务的API
提前致谢。
答案 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。