使用 AppleScript 在 iTunes DJ 中获取接下来的十首歌曲

发布于 2024-08-28 16:00:36 字数 116 浏览 9 评论 0原文

我正在使用 AppleScript 创建一个应用程序,我想显示 iTunes 将从 iTunes DJ 播放的接下来十首(包括当前)歌曲的列表。我在互联网、谷歌等任何地方都找不到它,所以我在这里询问。谁能帮助我吗?谢谢

I am creating an application using AppleScript and I want to display a list of the next ten (including the current) songs iTunes will play from iTunes DJ. I can't find it anywhere on the internet, Google, whatever so I asked it here. Can anyone help me? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尹雨沫 2024-09-04 16:00:36

以下 AppleScript 将返回 iTunes DJ 播放列表中的歌曲名称:

tell application "iTunes"
    get name of every track of playlist "iTunes DJ"
end tell

歌曲名称按播放顺序返回,并且还将包括最近播放的歌曲(这可以在 iTunes DJ 设置中进行配置)。

The following AppleScript will return the names of the songs in the iTunes DJ playlist:

tell application "iTunes"
    get name of every track of playlist "iTunes DJ"
end tell

The song names are returned in play order and will also include recently played songs (this can be configured in the iTunes DJ settings).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文