I took another step towards video conferencing, using webRTC. So something different from the h.264 broadcast.
I used jitsi servers and here is a first result
this is the code i used
A simple layout with only one view
I used jitsi servers and here is a first result
this is the code i used
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
Private rtcView1 As rtcView
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout")
End Sub
Sub Activity_Resume
For Each permission As String In Array(rp.PERMISSION_CAMERA, rp.PERMISSION_RECORD_AUDIO)
rp.CheckAndRequest(permission)
Wait For Activity_PermissionResult (permission As String, result As Boolean)
If result = False Then
ToastMessageShow("No permission!", True)
Activity.Finish
End If
Next
End Sub
A simple layout with only one view