I have a Fritz! Box 7590 router/modem for FFTC. Using the MyFritz!App Cam app on an old smartphone, I am able to send a video stream to the Internet at a specific personal address.
It was therefore very easy to create an app that displays, on another smartphone, this video in a webview (see code).
Would it be possible to extract the video from the HTML page viewed from the webview and view that video in another full-page webview?
This would somewhat improve the display on the second smartphone.
Thanks in advance for any suggestions.
It was therefore very easy to create an app that displays, on another smartphone, this video in a webview (see code).
B4X:
Sub Activity_Create(FirstTime As Boolean)
Dim URL As String
URL="http://android-8e5***************************/*********************x.myfritz.net:8080"
Activity.Color=Colors.white
webviwew1.Initialize("webview1")
Activity.AddView (webviwew1,0,0,100%x,100%y)
webviwew1.LoadUrl(URL)
End Sub
This would somewhat improve the display on the second smartphone.
Thanks in advance for any suggestions.