Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Weiguo
Visitor

Playback DASH strream issue on Firmware 7.5

I'm trying to playback DASH(static Live) stream on Roku 4 with Firmware 7.5. 
But I find it doesn't work. After investigation, I find the root reason.

Below is the origin SegmentTemplate in the mpd file, and it doesn't work.
<SegmentTemplate timescale="25"
    media="Living-Room-51_720p_25fps_h264_$Number$.mp4"
    initialization="Living-Room-51_720p_25fps_h264.mp4">
    <SegmentTimeline>
        <S t="0" d="50" r="35"/>
    </SegmentTimeline>
</SegmentTemplate>

If I change the SegmentTemplate to following format. It works. Just remove SegmentTimeline and add startNumber and duration.
<SegmentTemplate timescale="25"
        media="Living-Room-51_720p_25fps_h264_$Number$.mp4" startNumber="1" duration="50"
        initialization="Living-Room-51_720p_25fps_h264.mp4">
</SegmentTemplate>

So it seems that current firmware doesn't support SegmentTimeline, is it correct? If yes, is there any plan to support?
0 Kudos