G Gary King macrumors 6502 Original poster Jun 14, 2004 495 1 Dec 31, 2005 #1 How do I export my subscribed podcasts list? Just the titles of each of my podcasts, on my Windows iTunes.
How do I export my subscribed podcasts list? Just the titles of each of my podcasts, on my Windows iTunes.
K kainjow Moderator emeritus Jun 15, 2000 7,958 7 Jan 1, 2006 #2 Select Podcasts, then File > Export Song List The output is kind of ugly. Or you could use a little AppleScript I just wrote (paste it into Script Editor): Code: tell application "iTunes" set pcasts to playlist "Podcasts" set s to "" repeat with t in every track of pcasts set s to s & name of t & " " end repeat end tell For Windows, the script won't work (obviously).
Select Podcasts, then File > Export Song List The output is kind of ugly. Or you could use a little AppleScript I just wrote (paste it into Script Editor): Code: tell application "iTunes" set pcasts to playlist "Podcasts" set s to "" repeat with t in every track of pcasts set s to s & name of t & " " end repeat end tell For Windows, the script won't work (obviously).