Hi, When I try to use videoview with the folowing code I get this error message "Cannot play video", "Sorry, this video cannot be played"
Sub Globals
Dim vv As VideoView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout1")
vv.Initialize("vv")
Activity.AddView(vv, 10dip, 10dip, 250dip, 250dip)
vv.LoadVideo(File.DirRootExternal, "skyclouds_converted.mp4")
vv.Play
End Sub
I can play "skyclouds_converted.mp4" directly with my LG cell phone VideoPlayer without problem.
Hope that someone can tell me where I'm going wrong.
Thanks in advance.
Sub Globals
Dim vv As VideoView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout1")
vv.Initialize("vv")
Activity.AddView(vv, 10dip, 10dip, 250dip, 250dip)
vv.LoadVideo(File.DirRootExternal, "skyclouds_converted.mp4")
vv.Play
End Sub
I can play "skyclouds_converted.mp4" directly with my LG cell phone VideoPlayer without problem.
Hope that someone can tell me where I'm going wrong.
Thanks in advance.