AlpVir Well-Known Member Licensed User Longtime User Jan 7, 2026 #1 I have a webcam, a PC, and a tablet on the same local network. On my PC, I can view the webcam video in real time using a browser using VLC and the rtsp protocol (using Chrome). rtsp://adminassword@192.168.1.50:554/Streaming/Channels/101 Click to expand... Now I'd like to do the same thing on my Android tablet. How can I do it?
I have a webcam, a PC, and a tablet on the same local network. On my PC, I can view the webcam video in real time using a browser using VLC and the rtsp protocol (using Chrome). rtsp://adminassword@192.168.1.50:554/Streaming/Channels/101 Click to expand... Now I'd like to do the same thing on my Android tablet. How can I do it?
sirjo66 Well-Known Member Licensed User Longtime User Jan 7, 2026 #2 You can try XMTV player for Android https://xmtv-player.it.softonic.com/android B4X: link = "xmtv://" & b64.EncodeStoS(link, "utf8") Dim ii As Intent ii.Initialize(ii.ACTION_VIEW, link) StartActivity(ii) Upvote 0
You can try XMTV player for Android https://xmtv-player.it.softonic.com/android B4X: link = "xmtv://" & b64.EncodeStoS(link, "utf8") Dim ii As Intent ii.Initialize(ii.ACTION_VIEW, link) StartActivity(ii)