using Audio 1.10 to stream a video. first i have to download the name of the video. then i extract it and feed it to mp.Load(). i see errors in the log.
Dim vv As VideoView
Dim mp As MediaPlayerStream
...
If FirstTime Then
mp.Initialize("mp")
End If
vv.Initialize("vv")
...
Eventually gets to:
mp.Load(Matcher.Group(1))
which produces this:
FROM THE LOG:
setDataSource_l('http://195.10.10.219/rtvv/canal9.flv?GKID=1d24842059c311e2aeac00163ea2c743')
connect on behalf of uid 10053
connect to http://195.10.10.219/rtvv/canal9.flv?GKID=1d24842059c311e2aeac00163ea2c743 @0
Tagging socket 27 with tag 3f500000000(1013) for uid 10053 failed errno=-2
Failed to open libwvm.so
error (1, -2147483648)
Error (1,-2147483648)
-----------------------------------------------------
the url shown looks like it's supposed to look (it changes slightly from call to call, so i can't hardcode it. i scrape it off something else.)
is libwvm.so something i should expect to have on my nexus running 4.2? is failed to "open" the same as fail to "load"? where did i mess up?
thanks for any clues.
-go
Dim vv As VideoView
Dim mp As MediaPlayerStream
...
If FirstTime Then
mp.Initialize("mp")
End If
vv.Initialize("vv")
...
Eventually gets to:
mp.Load(Matcher.Group(1))
which produces this:
FROM THE LOG:
setDataSource_l('http://195.10.10.219/rtvv/canal9.flv?GKID=1d24842059c311e2aeac00163ea2c743')
connect on behalf of uid 10053
connect to http://195.10.10.219/rtvv/canal9.flv?GKID=1d24842059c311e2aeac00163ea2c743 @0
Tagging socket 27 with tag 3f500000000(1013) for uid 10053 failed errno=-2
Failed to open libwvm.so
error (1, -2147483648)
Error (1,-2147483648)
-----------------------------------------------------
the url shown looks like it's supposed to look (it changes slightly from call to call, so i can't hardcode it. i scrape it off something else.)
is libwvm.so something i should expect to have on my nexus running 4.2? is failed to "open" the same as fail to "load"? where did i mess up?
thanks for any clues.
-go