pinehead
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2010
02:33 PM
Error: Missing or invalid PHY
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.
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
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
4 REPLIES 4
Anonymous
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2010
02:35 PM
Re: Error: Missing or invalid PHY
Are you using wireless? Do other channels work?
pinehead
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2010
02:53 PM
Re: Error: Missing or invalid PHY
No it is a wired connection and yes blip.tv is working.

RokuKevin
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2010
04:09 PM
Re: Error: Missing or invalid PHY
Please see this post:
viewtopic.php?f=34&t=31051#p190978
You can either set the Roku content meta-data parameter minBandwidth = 20 (or some other small value). Or implement a smil file on Wowza to work around their default 64 kbps settings.
--Kevin
viewtopic.php?f=34&t=31051#p190978
You can either set the Roku content meta-data parameter minBandwidth = 20 (or some other small value). Or implement a smil file on Wowza to work around their default 64 kbps settings.
--Kevin
pinehead
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2010
01:07 PM
Re: Error: Missing or invalid PHY
Thanks, after i posted I cam across that wowza issue it has been fixed.
Thanks guys,
Thanks guys,