Step 1
The following code displays a realtime video from a local IP webcam :
Step 2
The following HTML code refers to a web page http: // ****** /test.html which displays the aforementioned video stream in realtime
The page can be viewed in any browser on a PC, but not on a smartphone (as far as I know)
Step 3
The following code B4A does NOT display the video, but only the word "TEST 1" followed by a white and empty box.
Is there any way to view this video?
Thank you in advance
The following code displays a realtime video from a local IP webcam :
B4X:
webview1.Initialize("webview1")
Activity.AddView (webview1,0,0,100%x,100%y)
URL="http://admin:@192......1/video2.mjpg" ' OK (va bene in locale, con wifi
webview1.LoadUrl(URL)
Step 2
The following HTML code refers to a web page http: // ****** /test.html which displays the aforementioned video stream in realtime
The page can be viewed in any browser on a PC, but not on a smartphone (as far as I know)
B4X:
<!DOCTYPE html>
<html>
<head><meta http-equiv="Pragma" content="no-cache" /><meta http-equiv="Chache-Control" content="no-cache" /></head>
<body>
TEST 1<BR>
<iframe src="http://admin:@192.1.......1/video1.mjpg?autoplay=1&rel=1" width="800" height="640"></iframe>
</body>
</html>
Step 3
The following code B4A does NOT display the video, but only the word "TEST 1" followed by a white and empty box.
B4X:
webview1.Initialize("webview1")
Activity.AddView (webview1,0,0,100%x,100%y)
URL="http://*******/test.html"
webview1.LoadUrl(URL)
Is there any way to view this video?
Thank you in advance