I've built a small desktop app for myself that logs listens from iTunes and Rdio so I can create powerful playlists based on how I listen to music over time, but it requires each track to have a unique ID that will never change, regardless of which app I used to listen. I currently retrieve unique IDs from iTunes using appscript in Python:

from appscript import *
it = app('iTunes')
it.current_track.persistent_ID()

However, when poking through the Rdio Suite AppleScript Dictionary I don't see any kind of unique ID attached to tracks. Suggestions?

link|improve this question

If Rdio does not provide a unique ID, even if it did it might be different that the one itunes provides, you can match song titles and that way get the id. – Kassym Dorsel Dec 7 '11 at 16:15
I'm not interested in the IDs between apps matching... – Brandon Durham Dec 7 '11 at 19:55
feedback

1 Answer

Rdio has an API. Here's some info on how to get the currently playing track: http://groups.google.com/group/rdio-api/browse_thread/thread/23d52c77b4e56a55/3b8a897f0835fd90

You can also get the url of the currently playing track via Applescript. This should serve as a sort of unique ID for the track:

osascript -e 'tell app "Rdio" to get the rdio url of the current track'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.