FeedReader icon indicating copy to clipboard operation
FeedReader copied to clipboard

What is the best way to get media enclosure details from a podcast’s RSS feed?

Open matthewkrieger opened this issue 4 years ago • 1 comments

What is the best way to get media enclosure details from a podcast’s RSS feed? At a minimum things like the url to the piece of media. I see the FeedEnclosure but it’s not clear as I look at the code how to use it.

matthewkrieger avatar Mar 22 '20 15:03 matthewkrieger

Use

var iTunesItem = item.GetItunesItem();

The item is an item in de feed. For additional iTunes properties on the channel, use

var iTunesFeedChannel = feed.GetItunesChannel();

RobSchoenaker avatar May 03 '22 10:05 RobSchoenaker