Hi,
I am trying to parse a rss similar to the one found here (in example) http://www.feedforall.com/mediarss.htm
<!-- Snipped for Brevity -->
<!--Snipped for Brevity-->
Now I want to get media:title, media:player url etc. I am trying to use XML::RSS, but no luck yet :(
Please help.
Thanks,
Subeen.
I am trying to parse a rss similar to the one found here (in example) http://www.feedforall.com/mediarss.htm
<!-- Snipped for Brevity -->
Code:
<item> <title>FeedForAll's Show Tunes and Song</title> <link>http://www.feedforall.com/songs.htm</link> <description>FeedForAll cool show tunes and lyrics. </description> <media:group> <media:content url="http://www.feedorall.com/sample.mp3" fileSize="122345" type="audio/mpeg" isDefault="true" expression="sample" bitrate="128" framerate="24" duration="98" height="220" width="300" /> <media:adult> false </media:adult> <media:title> FeedForAll file sample </media:title> <media:hash> dfdec888b72151965a34b4b59031290a </media:hash> <media:player url="http://www.feedforall.com/player" height="220" width="300" /> <media:credit role="author"> J Housley </media:credit> <media:text type="plain"> FeedForAll supports name space extentions, specifically Yahoo's media RSS </media:text> </media:group> </item>
Now I want to get media:title, media:player url etc. I am trying to use XML::RSS, but no luck yet :(
Please help.
Thanks,
Subeen.
Comment