I need to get a list of RSS subscribers from iTunes. I use the COM interface that Apple provides for managing iTunes, and have tried this on both Windows and Mac.
eg.
tell application "iTunes"
repeat with a_track in tracks of playlist "Podcasts"
get artist of a_track
get album of a_track
get name of a_track
get rating of a_track
end repeat
end tell
I can get a list of podcast episodes, but not their corresponding RSS URLs. iTunes seems to put all the episodes as tracks in the "Podcasts" playlist, but there doesn't seem to be any sort of grouping, as you would expect from what is shown in the window.
Norman
source
share