I need to get a list of the RSS subscriptions from iTunes. I'm using the COM interface that Apple provides for controlling iTunes, and have tried this both on Windows and Mac. e.g.
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 the 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 kind of grouping as you would expect from what is shown in the window.