Baublanc Member Licensed User Longtime User Dec 28, 2018 #1 Allo Everybody, looking for a library for streaming video on SMB. What's the newest one. Thanks
Erel B4X founder Staff member Licensed User Longtime User Dec 30, 2018 #2 ExoPlayer is the best option. You will need to run a media server on the remote computer. Upvote 0
Baublanc Member Licensed User Longtime User Dec 30, 2018 #3 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
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