Trying to play the live stream (the live stream is a loop so it's always on which make it easy to test) referenced below always fails. The video player shows the loading bar and gets stuck there forever (tested with a Roku 4).
Sadly there is no way to observe network traffic out of the Roku video player so I can't even tell if the video player gets stuck loading the playlist, the chunk list or the first chunk
http://origin1-edge2.atl.yourstreamlive.com/live/yourstreamlive/amlst:out_3829_5z9xjsug/playlist.m3u8?output_stream_name=out_3829_5z9xjsugEasy to reproduce simply with this MainScene.xml:<?xml version="1.0" encoding="utf-8" ?>
<!--********** Copyright 2016 Roku Corp. All Rights Reserved. **********-->
<component name="MainScene" extends="Scene" >
<script type="text/brightscript">
<![CDATA[
function init()
m.video = m.top.findNode("myVideo")
m.video.notificationinterval = 1
playVideo()
end function
function playVideo() as void
subtitle_config = {
TrackName: "pkg:/captions.ttml"
}
vidContent = createObject("RoSGNode", "ContentNode")
'vidContent.url = "https://roku.s.cpl.delvenetworks.com/media/59021fabe3b645968e382ac726cd6c7b/60b4a471ffb74809beb2f7d5a15b3193/roku_ep_111_segment_1_final-cc_mix_033015-a7ec8a288c4bcec001c118181c668de321108861.m3u8"
'vidContent.url = "http://origin1-edge2.atl.yourstreamlive.com/live/yourstreamlive/amlst:out_3829_5z9xjsug/playlist.m3u8?user_agent=Mozilla%2F5.0+%28iPhone%3B+CPU+iPhone+OS+12_1_2+like+Mac+OS+X%29+AppleWebKit%2F605.1.15+%28KHTML%2C+like+Gecko%29+Version%2F12.0+Mobile%2F15E148+Safari%2F604.1&output_stream_name=out_3829_5z9xjsug"
vidContent.url = "http://origin1-edge2.atl.yourstreamlive.com/live/yourstreamlive/amlst:out_3829_5z9xjsug/playlist.m3u8?output_stream_name=out_3829_5z9xjsug"
'vidContent.subtitleconfig = subtitle_config
vidContent.title = "Closed Captions in Scene Graph"
vidContent.streamformat = "hls"
m.video.content = vidContent
m.video.setFocus(true)
m.video.control = "play"
end function
]]>
</script>
<children>
<Video id="myVideo" width="1280" height="720" />
</children>
</component>