Login | Forgot password | Register
What is OpenID?
OpenID is an Internet-wide identity system that allows you to sign in to many websites with a single account.
With OpenID, your ID becomes a URL (e.g. http://username.myopenid.com/). You can get a free OpenID for example from myopenid.com.
For more information visit the official OpenID site.
Archive
SilverStripe Forums » Archive » How do I generate a Media RSS Feed?
Our old forums are still available as a read-only archive.
|
Page:
1
|
Go to End | |
| Author | Topic: How do I generate a Media RSS Feed? | 536 Views |
-
How do I generate a Media RSS Feed?

28 October 2008 at 1:02pm Last edited: 28 October 2008 2:14pm
Does RSSFeed support Media RSS? I'd like to include mp3's of a radio show in the feed.
I tried:
// RSS
function init() {
RSSFeed::linkToFeed($this->Link() . "rss");
parent::init();
}
function rss() {
$rss = new RSSFeed($this->LatestUpdates(), $this->Link(), "Pet World", "", "Title", "Content", "AudioFile");
$rss->outputToBrowser();
}function LatestUpdates() {
// 5 is the number of items listed
return DataObject::get("AudioPetWorldPage", "", "Created Desc", "", 5);
}Everything works except the audio file.
Thanks
-
Re: How do I generate a Media RSS Feed?

1 November 2008 at 12:03pm
MediaRSS is a separate specification - its not "auto-detected" in any way in the RSSFeed class that you want your output to comply to this specification. Have a look here: http://search.yahoo.com/mrss
Your best bet is to subclass RSSFeed and overload some of the methods and/or create new ones for the things specific to MediaRSS. Let us know how you go on, this could be a nice addition for a little module or recipe!
-
Re: How do I generate a Media RSS Feed?

3 November 2008 at 4:40pm
Thanks Ingo for the response. That probably exceeds my knowledge but maybe a co-worker and I can figure something out. If we do, we'll definitely post our results.
| 536 Views | ||
|
Page:
1
|
Go to Top |
Currently Online: SSadmin, Carolg, CodeGuerrilla , Euphemismus, pitsnipe, rgo, Sean, freenet, Willr
Welcome to our latest member: pitsnipe


