Android Question Streaming Video on SMB

Baublanc

Member
Licensed User
Longtime User
Allo Everybody, looking for a library for streaming video on SMB. What's the newest one.

Thanks
 

Baublanc

Member
Licensed User
Longtime User
Thanks Erel, I fix my problem with VLC. I use that code:

{code}

Dim i As Intent
Dim MoviePath as string = "smb://MyServer/Movies/Summer 2017.mp4""

i.Initialize(i.ACTION_VIEW, MoviePath)

i.SetType("video/*")

StartActivity(i)

{/code}

Easy and stable.

Thanks
 
Upvote 0
Top