Android Question play video on LAN

Binary01

Active Member
Licensed User
Longtime User
I want to play a video on local pc without copying to android device.
I found it on a post.

VideoView.LoadVideo("http", "http://192.168.1.100/MyCoolVideo.mp4")
You will also need to add the INTERNET permission to the manifest editor:
Code:
AddPermission("android.permission.INTERNET")

But I can't use VideoView in my b4a project. I used b4a 3.82 version.
How can I use it? or alternative method to play video on LAN.
 

Mark Read

Well-Known Member
Licensed User
Longtime User
What about using a webview with Chrome? Mp3 and mp4, chrome plays without problems. At least on my PC.
 
Upvote 0
Top