【发布时间】:2020-12-11 11:40:44
【问题描述】:
我想要一种从 Spotify 版本切换到 Apple Music 中相同版本的简单方法。
我已经找到了一种使用 Applescript 在 Apple Music 网络播放器中搜索当前正在播放的 Spotify 曲目的方法:
tell application "Spotify"
if player state is not stopped then
set currentArtist to artist of current track as string
set currentTrack to name of current track as string
open location "https://music.apple.com/search?term=" & currentArtist & " " & currentTrack
end if
end tell
我愿意:
- 在原生 Music.app 中打开搜索,而不是在网络播放器中。是否支持?
- 最好不要进行搜索,而是直接访问同一个版本。也许是ISRC codes?
- 选取任何选定的 Spotify 曲目,而不仅仅是当前播放的曲目。查看 Spotify Applescript 词典告诉我这是不可能的。
【问题讨论】:
标签: applescript spotify apple-music