Hi -
I'm doing some testing using the Simple Video Player example...and I have a channel that has mixed media formats (mp4, m4v, m4a and mp3). It appears to work very well with everything but MP3 (I'm thinking probably because it's designed to be purely a video player?)
The XML I have for the MP3 item generally looks like this...
<item sdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/JimFallon.jpg" hdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/JimFallon.jpg">
<title>My Song</title>
<contentId>2093</contentId>
<contentType>audio</contentType>
<contentQuality>SD</contentQuality>
<media>
<streamFormat>mp3</streamFormat>
<streamBitrate>128</streamBitrate>
<streamUrl>
http://www.myurl.com/file/debug/audio/Mother.mp3</streamUrl>
</media>
<synopsis>Just a song</synopsis>
<genres>Clip</genres>
<runtime>335</runtime>
</item>
First - is there something wrong with my item tags? If not - is my supposition correct that the video player example is only meant to handle video? If so - how do I go about adding an additional media type to it so it will support mp3s as well?
Thanks!