Is there anything that can be captured on the actual TV to diagnose a failed video in the media player?
In your basicplayer.js you handle failure like this:
_playerDispatcher: function(event) {
switch(event.type) {
case 'onStateChange':
if(event.payload.newState == KONtx.mediaplayer.constants.states.STOP) {
KONtx.application.previousView();
}
if(event.payload.newState == KONtx.mediaplayer.constants.states.ERROR || event.payload.newState == KONtx.mediaplayer.constants.states.UNKNOWN) {
this.dialogs.error.show();
}
You just pop up the error message. But is there anything in the payload or somewhere else that would give a clue to the actual cause of the problem?
Thanks

Unfortunately there is no way to diagnose the failed video, except external tools like ffmpeg/mediainfo. It may be due to unsupported codec/ video format etc. Could you give me the video URL so that I can try to find out more?<br><br>Thanks,<br>Vivek<br><br> QUOTE (Tek @ 11 Jan 2012 6:05 AM) Is there anything that can be captured on the actual TV to diagnose a failed video in the media player? <br><br>In your basicplayer.js you handle failure like this:<br><br> _playerDispatcher: function(event) {<br> switch(event.type) {<br> case 'onStateChange':<br> if(event.payload.newState == KONtx.mediaplayer.constants.states.STOP) {<br> KONtx.application.previousView();<br> }<br> if(event.payload.newState == KONtx.mediaplayer.constants.states.ERROR || event.payload.newState == KONtx.mediaplayer.constants.states.UNKNOWN) {<br> this.dialogs.error.show();<br> }<br><br><br>You just pop up the error message. But is there anything in the payload or somewhere else that would give a clue to the actual cause of the problem?<br><br>Thanks<br>