|
|||||||
| XML Discussion and technical support for using and deploying XML applications and websites. |
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Adding an image to a podcast RSS Feed
I used this to help create an RSS feed for podcasting
Code:
<?xml version="1.0"?> <rss version="2.0"> <channel> <title>Merchant Account Show</title> <link>http://www.merchantaccountshow.net</link> <description>Merchant Account information brought to you by LoudCommerce and Lynn Brooks</description> <language>en-us</language> <copyright></copyright> <lastBuildDate>Sun, 24 Dec 2006 06:42:44 GMT</lastBuildDate> <generator>tdscripts.com Podcast Generator</generator> <webMaster></webMaster> <ttl>1</ttl> <item> <title>Non Receipt of Goods or Services Chargeback Codes</title> <description>There is only one chargeback reason code in this group. These chargebacks can happen from time to time if the consumer claims the services were not provided or the goods were not delivered - maybe even not received in a timely fashion.</description> <pubDate>Sun, 24 Dec 2006 06:42:44 GMT</pubDate> <enclosure url="http://www.merchantaccountshow.net/mp3/loud-ps-20061224.mp3" length="1.97M" type="audio/mpeg"/> </item> </channel> </rss> It also shows Code:
<itunes:image href="http://example.com/podcasts/everything/AllAboutEverything.jpg" /> Thank you! |
|
#2
|
|||
|
|||
|
I was looking for the same thing too. I think!
I wanted to know if it is possible to add a favicon to the RSS Feeds. I use Firefox and Opera to read my RSS Feeds and only after I visit one of the feeds the favicon appears. But I wanted it to be loaded prior to that, when the feed loads. Can anybody help me, please? Thanks. |
|
#3
|
||||
|
||||
|
This is what I came up with
Code:
<?xml version="1.0"?> <rss version="2.0"> <channel> <title>Merchant Account Show</title> <link>http://www.merchantaccountshow.net</link> <description>Merchant Account information brought to you by LoudCommerce and Lynn Brooks</description> <language>en-us</language> <copyright>LoudCommerce 2006</copyright> <lastBuildDate>Sun, 24 Dec 2006 06:42:44 GMT</lastBuildDate> <generator>LoudCommerce</generator> <image> <url>http://www.loudcommerce.com/images/logo/first-data-merchant-services.gif</url> <title>LoudCommerce - Merchant Account Solutions</title> <link>http://www.loudcommerce.com/</link> <description>Process your credit cards with a leader in the industry</description> </image> <webMaster></webMaster> <ttl>1</ttl> <item> <title>Non Receipt of Goods or Services Chargeback Codes</title> <description>There is only one chargeback reason code in this group. These chargebacks can happen from time to time if the consumer claims the services were not provided or the goods were not delivered - maybe even not received in a timely fashion.</description> <pubDate>Sun, 24 Dec 2006 06:42:44 GMT</pubDate> <enclosure url="http://www.merchantaccountshow.net/mp3/loud-ps-20061224.mp3" length="1.97M" type="audio/mpeg"/> </item> </channel> </rss> |
|
#4
|
||||
|
||||
|
You can have both <image> and <itunes:image> in the same feed. If you are submitting your feed to iTunes, then I would certainly include the itunes image tag. If you aren't, then it isn't necessary. go here for all of the itunes specs.
__________________
Some useful sites I use: W3C Markup Validation Service - Make sure you are using valid HTML! This way people won't make fun of you as much. W3Schools Online Web Tutorials - Learn things. SWFobject from deconcept, UFO from Bobby VanDersluis - Embedding Flash the right way! CSSPlay by Stu Nicholls - Lots of cool CSS experiments. CSS Zen Garden - Some really great examples of how CSS can be used to make really beautiful websites. |
|
#5
|
||||
|
||||
|
Thanks! I was not certain if the extra tags would be read, thrown out, etc by the other readers.
|
|
#6
|
|||
|
|||
|
I read somewhere else that favicon is not possible to show up.
But I went forward and add that image tag to my feeds and I can see it using Opera9+ ou IE7. |
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|