We are making the switch from multi-bitrate MP4s to HLS and have all the content ready, but trying to understand the code change in our XML structure. Currently we use the following:
<contentQuality>HD</contentQuality>
<media>
<streamFormat>hls</streamFormat>
<streamQuality>HD</streamQuality>
<streamBitrate>3000</streamBitrate>
<streamUrl>http://www.ourserver.com/somevideo_3000.mp4</streamUrl>
</media>
<media>
<streamFormat>hls</streamFormat>
<streamQuality>SD</streamQuality>
<streamBitrate>1800</streamBitrate>
<streamUrl>http://www.ourserver.com/somevideo_1800.mp4</streamUrl>
</media>
...etc
Is the Roku capable of parsing out the variable rates from the HLS much like iOS and Android? Meaning can we just pass it one streamURL and no Bitrates? Something like the following?
<contentQuality>HD</contentQuality>
<media>
<streamFormat>hls</streamFormat>
<streamUrl>http://www.ourserver.com/somevideo-playlist.m3u8</streamUrl>
</media>
Any help is appreciated. Thanks in advance!