Forum Discussion
RPW68
9 years agoVisitor
Finally...To get past the latest problem (RAF 1.8; render failure: failed to create media player), you need to modify the onKeyEvent function within SpringBoard.brs so that it stops and doesn't pause:
With this and the previous changes, I seem to have it fully working for the SG video-player example that is available on GitHub.
function onKeyEvent(key as String, press as Boolean) as Boolean
print "in SimpleVideoScene.xml onKeyEvent ";key;" "; press
if press then
if key = "back"
print "------ [back pressed] ------"
if m.Video.visible
m.Video.control = "stop"
With this and the previous changes, I seem to have it fully working for the SG video-player example that is available on GitHub.