Get RSS feed from iTunes podcast links

77

36

I'm using Gnome's Rhythmbox to listen to Podcasts. Some Podcasts don't provide an rss feed for downloading the episodes but only a itms:// link for iTunes.

Now I'd like to download them via a "normal" RSS reader/podfetcher.
How can I accomplish this?

guerda

Posted 2009-12-03T18:52:39.027

Reputation: 1 441

People answering are ignoring the itms:// part of your question and assuming you're referring to normal iTunes links. Those are two different types of links. See my answer for a direct response to your question. – Michael Khalili – 2015-06-24T01:48:27.580

Answers

27

You should first subscribe to the Podcast using iTunes, then open your iTunes library.

If you go to your Podcasts listing in your iTunes library, you will see a list of the Podcasts you subscribe to. Right-click on the Podcast you want to copy the URL of and select "Copy Podcast URL". This will copy the URL to the RSS feed of the Podcast into your clipboard. You can then paste that link into whatever other application you are using.

shawnr

Posted 2009-12-03T18:52:39.027

Reputation: 472

5Is Apple literally trying to break the web!? – HaveAGuess – 2015-03-16T22:41:56.167

5HaveAGuess... Apple is trying to BREAK EVERYTHING! – Papa De Beau – 2015-08-26T21:51:21.650

I also found it very useful to get my podcast's feed url so I built this tool: http://podcastlookup.com let me know if you have any suggestions to improve it!

– Erwan – 2016-11-13T14:03:11.027

@Erwan Suggestion: Make it work ;] (details: all queries fail to find the forms action url, details.html, so it ist b0rk) – naki – 2017-06-25T20:04:25.103

28Thanks for the hint. Is there a possibility without using iTunes? – guerda – 2009-12-07T07:30:37.227

5I have not found a way to get the feed URL without using iTunes (and assuming the site doesn't publish the feed URL anywhere). Often it's so time-consuming to search/guess at what the URL would be that it's easier to just open up iTunes and do it that way. I sympathize with the desire to bypass iTunes entirely and will watch this thread to see if anyone comes up with a way to do that. – shawnr – 2009-12-11T21:01:21.210

Thanks for your research. I will post my information too, if I found sth new. – guerda – 2009-12-16T10:16:16.600

59

You can use the following "small tool" I created to do this :

Itunes podcast link extractor (Just enter a itunes podcast URL in the input field)

How it works if you prefer to do it manually :

Extract the Id from the link with a regex or somethin else

EX: https://itunes.apple.com/podcast/state-trance-official-podcast/id260190086

load this link with the ID https://itunes.apple.com/lookup?id=260190086&entity=podcast

Get the "feedUrl" from this json file.

The &entity=podcast is not necessary but it may help

Gino

Posted 2009-12-03T18:52:39.027

Reputation: 691

This is not related to ITMS links. You're answering "How to extract the RSS feed from a normal iTunes link?" but that's not what OP asked. – Michael Khalili – 2015-06-24T01:47:27.427

1This helped me a lot. Found this page while searching for itunes podcast rss url, so this answer is still relevant. – aexl – 2015-07-02T12:30:28.707

2

Doesn't work anymore. ex: https://itunes.apple.com/us/itunes-u/how-to-program-with-java/id563384781

– DummyBeginner – 2016-05-02T17:51:56.173

1It worked for me (audio podcast). The one you posted Dummy looks like a video podcast (iTunes U), maybe you need a different format. – Michael Butler – 2016-05-31T02:33:33.873

Just tested and it worked for me as well! In Chrome, it will download a .txt with the info inside of it. – NBN-Alex – 2018-07-06T00:21:50.430

1This trick worked for me just now. – thomasrutter – 2018-09-05T03:37:49.663

33

This works also: http://picklemonkey.net/feedflipper-home/ You can even see the original iTunes feed when you open the generated feed in your browser.

user119290

Posted 2009-12-03T18:52:39.027

Reputation:

This is really the best solution without installing and running iTunes.. more so now that I am on Ubuntu... – Antony – 2014-12-30T14:36:43.563

This is a good one. Took me literally less than 1 minute to get the direct RSS feed link. Thanks so much! – aexl – 2015-02-03T14:56:23.537

The link seems dead now. – cic – 2015-04-06T21:52:32.363

Dead for me, too. I recommend @Gino's solution, below. – George – 2015-05-03T08:16:37.683

2Also, http://picklemonkey.net/feedflipper-home/ will do the trick. Thanks, @senarvi! – George – 2015-05-03T08:19:27.567

I also needed to find my podcasts urls, so I built this tool: http://podcastlookup.com.

– Erwan – 2016-11-17T02:23:42.237

1It's not obvious, but the old not-working link reported above was replaced with a working one in an edit. – aexl – 2017-02-11T22:16:34.537

Works perfectly. Needed this to find a client's RSS feed and didn't want to have to subscribe via iTunes to the podcast myself. – Ian – 2017-04-03T16:09:55.323

4

I believe all the existing answers are mistaken. The itms protocol is used when a podcast is not listed on iTunes at all. It's used as a shortcut to subscribe a regular RSS feed that isn't on iTunes. It's a way to allow someone to subscribe to iTunes without having the feed listed in the directory.

It works simply by replacing the http:// protocol prefix of an RSS feed URL with itms:// So, if you'd like to get the regular RSS feed of a show that's linking to itms, just replace the itms with http.

Here's an example: A show I help produce is called Keith and The Girl. Their RSS feed is http://www.keithandthegirl.com/rss Their iTunes link listing is https://itunes.apple.com/us/podcast/keith-girl-comedy-talk-show/id253167631?mt=2&ign-mpt=uo%3D4

However, you can subscribe to the RSS feed directly by replacing the http in the RSS feed url with ITMS like so itms://www.keithandthegirl.com/rss (SE won't let me make that link clickable but you get the idea)

So, now you see that ITMS and HTTP are interchangeable. Whenever you encounter an ITMS link, just replace it with HTTP.

Michael Khalili

Posted 2009-12-03T18:52:39.027

Reputation: 149

Doesn't work for me. Simply sends me back to the iTunes page from which I got the original ITMSS link. @Gino's solution, however, works fine. It gives me a URL I can put into my RSS feed reader and forget about. – George – 2015-05-03T08:13:35.753

Great but @Gino is answering a question that wasn't asked. Gino is answering "How do I get the RSS link from a typical iTunes podcast link?" The original question is related to "ITMS://" links. My answer specifically addresses the original question. Gino addresses a different question related to RSS feeds and iTunes. It has nothing to do with ITMS links. – Michael Khalili – 2015-06-24T01:45:21.703

2

iTunes Podcast Feed Extractor is an online tool I've created for reliably extracting an RSS url from an iTunes podcast link (so any podcast/rss app can be used). https://votable.net/tools/itunes.php

Instructions

  • Copy and paste the relevant URL into the input field on the page. (The URL protocol doesn't matter e.g. "https", "itms," etc.)
  • Click the submit button
  • The extracted RSS URL should appear in below the form (along with the title and a thumbnail). If the feed could not be extracted, you will see an error message in the same area.
  • Now you can use the real RSS URL in your desired podcast/RSS app.

Paul T.

Posted 2009-12-03T18:52:39.027

Reputation: 41

0

While searching for a way to do this, I found Find out the RSS feed for an iTunes podcast. The guy created a bookmarklet to reveal the true RSS podcast URL/content feed, when you are on an iTunes podcast page.

javascript:(function(){var%20newScript=document.createElement('script');newScript.src='https://cdn.rawgit.com/djm/uncover-itunes-rss-bookmarklet/master/bookmarklet.js';document.body.appendChild(newScript);})();

It should be noted that the bookmarklet redirects to https://cdn.rawgit.com/djm/uncover-itunes-rss-bookmarklet/master/bookmarklet.js. It looks innocuous enough but the script could be changed at any time, including by a malicious hacker, so be forewarned.

He did publish it on GitHub––djm/uncover-itunes-rss-bookmarklet: Javascript bookmarklet to reveal actual RSS URL on a iTunes podcast page.

It works. e.g., when on https://itunes.apple.com/us/podcast/burnt-toast/id969524107?mt=2, the bookmarklet gave me http://feeds.feedburner.com/food52burnttoast. This opened perfectly in my feed reader.

hmj6jmh

Posted 2009-12-03T18:52:39.027

Reputation: 371

rawgit is being discontinued – clacke – 2019-01-06T04:16:22.633

https://cdn.jsdelivr.net/gh/djm/uncover-itunes-rss-bookmarklet@75cb5d6a6ae2870b6c4da46e929cf84b3eda3028/bookmarklet.js should work as a replacement. By using the commit hash instead of master, it also reduces the set of people able to do injection from djm, github and jsdelivr (or in the original, rawgit) to just github and jsdelivr. – clacke – 2019-01-06T04:22:04.337