I am going through the video player template provided by roku. I am able to make many changes including the number of categories, images and descriptions. My problem is that when I reference any stream other than the Ted Talk videos, they will not play. Even the bunny video and 'bing bop' included in the Simple Video player. I have tried changing the stream format to hls on my xml file. That dosent work either. I have Mp4 files on a file server. Am I supposed to reference those files for my stream URL or do I need to create an html file with a player in it? Do I need to change the brightScript code in the template to read the XML files? Below is a sample of what I am trying to do.
<item sdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/ImogenHeap.jpg" hdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/ImogenHeap.jpg">
<title>Imogen Heap plays 'Wait It Out'</title>
<contentId>10033</contentId>
<contentType>Talk</contentType>
<contentQuality>SD</contentQuality>
<media>
<streamFormat>mp4</streamFormat>
<streamQuality>SD</streamQuality>
<streamBitrate>1500</streamBitrate>
<streamUrl>
http://s3.amazonaws.com/innova_secure/t ... LapVid.mp4</streamUrl>
</media>
<synopsis>
Imogen Heap's aching voice and spectral electronics infuse countless films and iPods with bone-chilling atmospherics.
</synopsis>
<genres>Music</genres>
<runtime>238</runtime>
</item>
Thank you so much for taking the time to read this. ANY help is greatly appreciated.