Hello,
I have a video source that split a video into multiple segments (m3u8) ie, media-1.m3u8, media-2.m3u8, etc...
Looking at the possible content meta-data description, it seems like i can pass it a few things;
1. StreamUrls - pass it an array of stream urls
2. Streams - pass it an array of associated array
from the provided sample from
http://sdkdocs.roku.com/display/sdkdoc/ ... +Meta-Data, i've tried both and it doesn't seem to work. it just hang at the video screen displaying the video title and the retrieving progress bar. the progress bar doesn't advance and it seems stuck.
If I play a single stream, it seems to work fine. Another thing i've tried is
streams = []
for each i in stacks.Items
streams.Push({URL: url + "/" + i.Id.ToStr() + "/manifest.m3u8"})
End for
player.SetContent({
Title: meta.Title
StreamFormat: "hls"
Streams: streams
})
from the above, the video will play BUT only the first stream. Can someone with more experience shed some light on this?
Thanks