I've been successfully streaming off a custom app up until this week. Then an error occurred that says I've gone as far as using a test script that once worked and found on this forum. I've plugged the stream into the other tests and the same thing happens.
Here is the code to a simple stream video script that used to work and now has randomly stopped. Any input into this would be greatly appreciated.
Sub Main()
vid = {
StreamUrls: ["http://mobile.ec2.cor.org:1935/live/mobile-2/playlist.m3u8"]
streamBitrates: [0]
streamQualities: ["SD"]
streamFormat: "hls"
}
screen = CreateObject("roVideoScreen")
screen.SetMessagePort(CreateObject("roMessagePort"))
screen.SetContent(vid)
screen.Show()
while true
msg = wait(0, screen.GetMessagePort())
if type(msg) = "roVideoScreenEvent" then
if msg.isScreenClosed()
exit while
end if
end if
end while
End Sub
BrightScript Debugger> ------ Running ------
*** ERROR: Missing or invalid PHY
11, 0: startup progress
11, 66: startup progress
11, 132: startup progress
9,-3: An unexpected problem (but not server timeout or HTTP error) has been det
ected.
16, 0: Playback completed.
11, 0: end of playlist
------ Running ------
11, 0: startup progress
11, 66: startup progress
11, 132: startup progress
9,-3: An unexpected problem (but not server timeout or HTTP error) has been det
ected.
16, 0: Playback completed.
11, 0: end of playlist