I am getting this from Roku:
2 items have error: No valid items were found in the feed: No content found in given stream
Where did I go wrong in this code:
Your feed file does not conform to the Roku MRSS Spec.
Thanks Baradanikto,
I have used your example as a guild. Not sure if my entries for the GUID and HREF are correct.
<item>
<guid>http://bhpfm.com/Roku/2TESTXML.xml</guid>
<pubDate>2023-06-27T04:42:31+00:00</pubDate>
<media:title>Rum Festival</media:title>
<media:description>Ann Burell in Barbados.</media:description>
<media:category>cooking</media:category>
<media:category>reality</media:category>
<media:thumbnail url="http://bhpfm.com/dcxml/images/BDOS.png" />
<media:content
url="http://bhpfm.com/Burrel.mp4"
duration="74.74"
bitrate="2500"
language="en-us" />
<media:subTitle
lang="en-us"
href="http://www.example.org/cdn/subtitles/subtitle.srt" />
</item>
I would remove anything that is optional: for example, bitrate.
The guid can be any unique string typically not url.
I have made the change, Is it correct now?
Sorry for the long time to reply.
<item>
<guid>DCTV</guid>
<pubDate>2023-06-27T04:42:31+00:00</pubDate>
<media:title>Rum Festival</media:title>
<media:description>Ann Burell in Barbados.</media:description>
<media:category>cooking</media:category>
<media:category>reality</media:category>
<media:thumbnail url="http://bhpfm.com/dcxml/images/BDOS.png" />
<media:content
url="http://bhpfm.com/Burrel.mp4"
duration="74.74"
bitrate="2500"
language="en-us" />
<media:subTitle
lang="en-us"
href="http://www.example.org/cdn/subtitles/subtitle.srt" />
</item>
If you want me to validate your feed file, I'll need the complete file like in your original post.