-
-
Save secretfader/653362 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set lastName to "" | |
set lastArtist to "" | |
repeat | |
tell application "iTunes" | |
set trackName to name of current track | |
set trackArtist to artist of current track | |
end tell | |
if trackName is not lastName and trackArtist is not lastArtist then | |
set lastName to trackName | |
set lastArtist to trackArtist | |
tell application "LadioCast" | |
set metadata song to trackName & " - " & trackArtist | |
end tell | |
end if | |
delay 15 | |
end repeat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment