jmatt0806
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2017
01:30 PM
Show Error Message If Stream Is Not Available?
How can I check if an HLS (M3U8) stream is available and if not show an error dialog?
Here's the code I'm using to play the video:
Here's the code I'm using to play the video:
sub onButtonSelected()
'Ok'
if m.ButtonGroup.buttonSelected = 0
m.Video.visible = "true"
m.Video.control = "play"
m.Video.setFocus(true)
'Exit button pressed'
else
m.Exiter.control = "RUN"
end if
end sub
1 REPLY 1

24i
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2017
01:19 AM
Re: Show Error Message If Stream Is Not Available?
Hi jmatt0806,
The way we do it is by observing the video player state variable.
And more info on dialogs can be found here: https://sdkdocs.roku.com/display/sdkdoc/Dialog
Hope this helps
The way we do it is by observing the video player state variable.
m.Video.observeField("state", "videoPlayerStateChanged")
Sub videoPlayerStateChanged()
state = m.Video.state
print "Video player state is now: " + state
if(state = "error")
print "ERROR - Code " + m.Video.errorCode.ToStr() + ", Message: " + m.Video.errorMsg
end if
End Sub
And more info on dialogs can be found here: https://sdkdocs.roku.com/display/sdkdoc/Dialog
Hope this helps