我试图返回当前iTunes Track的信息,该信息正在我的电脑上播放。
我可以获得这样的单一信息:
#config/initializers/assets.rb
Rails.application.config.assets.precompile += %w(file)
例如返回assets.rb
。
但我是否有可能获得有关当前曲目的更多信息,因此它会返回如下内容:
tell application "iTunes"
get name of current track
end tell
这可能吗?或者我是否必须创建多个脚本?
由于
答案 0 :(得分:6)
获取name
,artist
和album
tell application "iTunes"
get {name, artist, album} of current track
end tell
结果是一个列表
获取所有内容
tell application "iTunes"
get properties of current track
end tell
结果是记录