Android Question B4A and VLC player

kalarius

Active Member
Licensed User
Longtime User
How can I call the vlc video player to play my movie ?
How can I read fron b4a that the player ends to play the movie?
is there an example?

my android device has 2 media players
fireAirplayer and Tvdvideo
Can I call any of them instead of the VLC player and pass parameters to them
Like start play, stop ,rewind , hide the menu bar etc

Kalarakis
Creta
Greece
 

kalarius

Active Member
Licensed User
Longtime User
Dim in As Intent
in.Initialize(in.ACTION_VIEW, "file://" & File.Combine(File.DirRootExternal, "file.mp4"))
in.SetType("video/mp4")
StartActivity(in)

is there any methode that I now from my program that the player has finish to play ?
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top