I am interested seeing video status event to know if the video has started playing, but it looks like the event is not being fired.
In RokuSDK_v41/examples/source/videoplayer/source/appVideoScreen.brs, it has:
if type(msg) = "roVideoScreenEvent" then
print "showHomeScreen | msg = "; msg.getMessage() " | index = "; msg.GetIndex()
if msg.isScreenClosed()
print "Screen closed"
exit while
...
elseif msg.isStatusMessage()
print "Video status: "; msg.GetIndex(); " " msg.GetData()
But when running the example on my roku box, I have never seen the status message. For example, the following is copied from telnet:
url:
http://rokudev.roku.com/rokudev/example ... tivity.xmlRequest Time: 60
Show Feed Parse Took : 21
ButtonPressed
ButtonPressed
showHomeScreen | msg = Stream started. | index = 1
Unexpected event type: 20
showHomeScreen | msg = | index = 0
showHomeScreen | msg = Playback interrupted by user. | index = 0
Unexpected event type: 15
showHomeScreen | msg = | index = 0
Screen closed
Button pressed: 2 0
The video plays fine, but I have not seen any '"Video status' message.
Thanks.