A simple one, this. Firstly, get to where rhythmbox stores its data:
# cd ~/.local/share/rhythmbox
Then, do this:
# grep podcast-feed rhythmdb.xml -A 5 | grep location | sed -e 's/<location>//' | sed -e 's/<\/location>//'
You should end up with a list of URLs which your podcast feeds are served from.
Bonjour from Paris,
Indeed I am a french new user of the Rhythmbox application on Linux, and I found your answer regarding the way to generate a list including the URL’s which actually feed the Rhythmbox “Podacst” activity.
But, would you mind to tell me how to also generate in addition, in this previous list, the titles and descriptions relevant to every record
(actually the “Mp3” files from classic Radio station broadcasts)
provided by each Podcast URL?
Thank you in advance,
Patrice
PS: Merry Christmas!
Hi Patrice,
Sorry my response comes so long after you commented.
Do you mean extracting other data related to each Podcast feed? That could actually be quite simple – just omit everything after the first command, but increase the number of lines extracted to around 16:
# grep podcast-feed rhythmdb.xml -A 16
The result of that command gives me output like this:
<entry type="podcast-feed">
<title>SourceTrunk</title>
<genre></genre>
<artist>Dimitri Larmuseau</artist>
<album></album>
<location>http://api.viglink.com/api/click?format=go&jsonp=vglnk_143150898366015&key=f33f208bd7d94bed0a23fe052ea3ba17&libId=i9mjgd8q0100ohp6000DA67cvk0cl&loc=http%3A%2F%2Fwww.maketecheasier.com%2F10-great-podcasts-for-linux-open-source-geeks%2F&v=1&out=http%3A%2F%2Ffeeds.feedburner.com%2Fsourcetrunk_ogg&ref=http%3A%2F%2Fwww.google.co.uk%2Furl%3Fsa%3Dt%26rct%3Dj%26q%3D%26esrc%3Ds%26source%3Dweb%26cd%3D3%26ved%3D0CC8QFjAC%26url%3Dhttp%253A%252F%252Fwww.maketecheasier.com%252F10-great-podcasts-for-linux-open-source-geeks%252F%26ei%3DrhdTVduxGuXV7AaclIPICg%26usg%3DAFQjCNFgrsgsFuzxyrxyX6mzKu7MgRvBZg%26bvm%3Dbv.93112503%2Cd.ZGU&title=10%20Great%20Podcasts%20for%20Linux%20%26%20Open%20Source%20Geeks&txt=RSS%20(OGG)</location>
<last-seen>1431508996</last-seen>
<date>0</date>
<media-type>application/octet-stream</media-type>
<status>1</status>
<description>Sourcetunk will try to demystify the beautiful beast that is Open Source and show the listeners the more practical examples of Open Source and Free Software. It will discuss software for Linux, BSD, MacOSX and Microsoft Windows systems</description>
<subtitle></subtitle>
<summary></summary>
<lang>en</lang>
<copyright>Dimitri Larmuseau</copyright>
<image>http://www.sourcetrunk.com/pictures/sourcetrunk_300_300_ogg.png</image>
<post-time>1421686800</post-time>
</entry>
Then at least you could pick out the relevant information.
An alternative way to extracting this could be just to open the rhythmdb.xml file into Firefox and do a text search for “podcast-feed”.
Or … did you mean get Rhythmbox to display the title of each individual track that the radio station includes in its podcast mp3 file?
Unfortunately, that won’t be possible, as all data seems to be aggregated into one file with only the single description.
I’m afraid I don’t know everything about streaming protocols, but my understanding of this is that the radio station can optionally include this metadata in the stream that they “broadcast”.
If you are looking to temporarily store MP3s that you like that a radio station plays, perhaps you should listen to a live feed instead and record that stream? A better media player in Linux for doing this is Exaile, which I believe has a stream recorder that can split incoming MP3s into separate files. This is the only viable approach to doing that, as far as I know (with a media player that supports recording live streams).
However, there’s an older discussion on AskUbuntu where someone asks about scrobbling radio streams from Rhythmbox, which links to a discussion on GNOME’s Bugzilla, where the reply is “The shoutcast metadata provided by most streams only includes a single title string which cannot reliably be split into artist and song title fields.” (https://bugzilla.gnome.org/show_bug.cgi?id=376659).
So I’m not quite sure how Exaile (or another media player with similar capability) actually does this recording trick, unless the metadata is of a more useful format!
Hope that all helps!