guidamedia2
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2012
10:11 AM
roVideoScreen Errors
I need an example of how to get the Roku Internal Error? Does anyone have one? The documentation states
I am suddenly having issues where my video's stop playing. I get a generic message and info using msg.GetMessage() and msg.GetInfo(), but nothing detailed enough so have a better idea to fix.
Here is the data:
Roku Internal Errors
When you get an error code of -3, the Roku Internal Error number may have further meaning to Roku Developer Support.
It's good to record these roku internal errors whenever you get a -3 Error number.
I am suddenly having issues where my video's stop playing. I get a generic message and info using msg.GetMessage() and msg.GetInfo(), but nothing detailed enough so have a better idea to fix.
Here is the data:
msg.GetIndex -3
msg.GetData 0
msg.GetMessage An unexpected problem (but not server timeout or HTTP error) has been detected.
msg.GetInfo()
StreamBitrate: 1500000
MeasuredBitrate: 13039
Url: ...
4 REPLIES 4

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2012
10:46 AM
Re: roVideoScreen Errors
You could try setting up an roSystemLog and listening for "http.error" events. I know the error states that it's not HTTP, but there might be something in there that's enlightening.
You might also look to see if msg.GetInt() gives you any information.
You might also look to see if msg.GetInt() gives you any information.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
guidamedia2
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2012
11:10 AM
Re: roVideoScreen Errors
I will try the roSystemLog(). I did receive some new errors:
We have over 160k of videos, and some are SD. On the Roku2 box, these play in SD format, but on the Roku1 I develop on, the video stretches the entire HD screen. Could that be the issue?
- IsUnderrun: true - I noticed the position went from 336 seconds into the video to 18
- msg.GetMessage The format is not supported or the media is corrupt - I just started getting this error today.
We have over 160k of videos, and some are SD. On the Roku2 box, these play in SD format, but on the Roku1 I develop on, the video stretches the entire HD screen. Could that be the issue?
Xerces77
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2012
05:03 PM
Re: roVideoScreen Errors
I'm getting the same errors on my channel and I believe it started over the weekend (October 27-28, 2012) My Roku has software version 3.1 r1011.
None of my videos are playing and I'm getting:
http error: -1 URL: <I'm concealing my URL>
showVideoScreen | msg = An unexpected problem (but not server timeout or HTTP error) has been detected. | index = -3 | msgInfo = StreamBitrate: 294000
MeasuredBitrate: 5778
None of my videos are playing and I'm getting:
http error: -1 URL: <I'm concealing my URL>
showVideoScreen | msg = An unexpected problem (but not server timeout or HTTP error) has been detected. | index = -3 | msgInfo = StreamBitrate: 294000
MeasuredBitrate: 5778
guidamedia2
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2012
06:40 AM
Re: roVideoScreen Errors
I feel your pain... here is what I did to resolve the issue:
I am not using StreamBitrates.
sdata = dDefaultsMetaDataStreamGet()
sdata.url = xml@media_stream
sdata.contentid = some_value
bitrates = [330, 660, 996, 2048]
for each br in bitrates
sdata.bitrate = br
episode.Streams.Push(sdata)
end for
Function dDefaultsMetaDataStreamGet() As Object
output = CreateObject("roAssociativeArray")
output.url = ""
output.bitrate = 0
output.quality = false
output.contentid = ""
output.stickyredirect = false
return output
End Function
I am not using StreamBitrates.