Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Gary King

macrumors 6502
Original poster
Jun 14, 2004
495
1
How do I export my subscribed podcasts list? Just the titles of each of my podcasts, on my Windows iTunes.
 

kainjow

Moderator emeritus
Jun 15, 2000
7,958
7
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).
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.