Android Question VideoViewExtras 1.00

tariqyounis

Member
Licensed User
Longtime User
Hell all;
I am taking a video from by using CamEx2 and I am saving it to File.DirRootExternal . I would like to play the video by using the following code:
vv:
Private Sub btnShow_LongClick
    vv.Initialize("vv")
    Rootp.AddView(vv, 10dip, 10dip, 250dip, 250dip)
    vv.LoadVideo(Main.VideoFileDir, "pic1.mp4")
    vv.Play
End Sub

but I am getting
can't play this video

any idea what to do?
 
Top