trafficstars
Hello, i am running jitsi on kubernetes. Everything fine with 2 user but if one more user
join, users can not see each other cameras. Here is my yaml and logs.
kind: Deployment
metadata:
labels:
k8s-app: jitsi-deneme
name: jitsi-deneme
namespace: jitsi
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
k8s-app: jitsi-deneme
template:
metadata:
labels:
k8s-app: jitsi-deneme
spec:
hostAliases:
- ip: '127.0.0.1'
hostnames:
- example.com
containers:
- name: web
image: jitsi/web:stable-5765
resources:
limits:
cpu: "1000m"
memory: 1024Mi
requests:
cpu: "50m"
memory: 100Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
volumeMounts:
- mountPath: /config
name: web-config
# - mountPath: /usr/share/jitsi-meet/images
# name: web-images
- name: jicofo
image: jitsi/jicofo:stable-5765
resources:
limits:
cpu: "500m"
memory: 1024Mi
requests:
cpu: "100m"
memory: 256Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
- name: prosody
image: jitsi/prosody:stable-5765
# args: ["/scriptss/./script.sh"]
resources:
limits:
cpu: "1000m"
memory: 1024Mi
requests:
cpu: "100m"
memory: 128Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
#volumeMounts:
# - mountPath: /scriptss
# name: prosody-script
- name: jvb
image: jitsi/jvb:stable-5765
ports:
- containerPort: 10000
hostPort: 10000
resources:
limits:
cpu: "10000m"
memory: 8192Mi
requests:
cpu: "1000m"
memory: 512Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
- name: jibri
image: jitsi/jibri:stable-5765
resources:
limits:
cpu: "5000m"
memory: 8192Mi
requests:
cpu: "500m"
memory: 2048Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
securityContext:
privileged: true
capabilities:
add:
- NET_BIND_SERVICE
- SYS_ADMIN
volumeMounts:
- mountPath: /dev/snd
name: dev-snd
- mountPath: /dev/shm
name: dev-shm
- mountPath: /config
name: config
securityContext:
privileged: true
volumes:
- name: dev-snd
hostPath:
path: /dev/snd
- name: dev-shm
hostPath:
path: /dev/shm
- name: config
hostPath:
path: /home/manager/jitsi-data/jibri-var/config
# - name: prosody-script
# hostPath:
# path: /home/manager/jitsi-data/prosody-var/scriptss
- name: web-config
hostPath:
path: /home/manager/jitsi-data/web-var-5870/config
# - name: web-images
# hostPath:
# path: /home/manager/jitsi-data/web-var-5870/images
apiVersion: v1
kind: ConfigMap
metadata:
name: jitsi-env-auth-3
namespace: jitsi
data:
ENABLE_AUTH: "0"
ENABLE_GUESTS: "1"
AUTH_TYPE: internal
DOCKER_HOST_ADDRESS: 172.18.1.71:30195
PUBLIC_URL: https://172.18.1.71:30195
XMPP_BOSH_URL_BASE: http://127.0.0.1:5280
XMPP_AUTH_DOMAIN: auth.example.com
XMPP_MUC_DOMAIN: muc.example.com
XMPP_GUEST_DOMAIN: guest.example.com
XMPP_INTERNAL_MUC_DOMAIN: internal.muc.example.com
XMPP_RECORDER_DOMAIN: recorder.example.com
XMPP_SERVER: example.com
XMPP_DOMAIN: 172.18.1.71
JICOFO_AUTH_USER: focus
JICOFO_AUTH_PASSWORD: jicofoauthpassword
JICOFO_COMPONENT_SECRET: jicofocomponentsecret
JVB_AUTH_USER: jvb
JVB_AUTH_PASSWORD: jvbauthpassword
JVB_BREWERY_MUC: jvbbrewery
JVB_PORT: "31000"
JVB_TCP_PORT: "31443"
JVB_STUN_SERVERS: stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
JVB_TCP_HARVESTER_DISABLED: "true"
JIBRI_XMPP_USER: jibri
JIBRI_XMPP_PASSWORD: jibriauthpass
JIBRI_BREWERY_MUC: JibriBrewery
JIBRI_RECORDER_USER: recorder
JIBRI_RECORDER_PASSWORD: jibrirecorderpass
JIBRI_RECORDING_DIR: /config/recordings
JIBRI_FINALIZE_RECORDING_SCRIPT_PATH: /config/finalize.sh
JIBRI_STRIP_DOMAIN_JID: muc
JIBRI_LOGS_DIR: /config/logs
JIBRI_PENDING_TIMEOUT: "200"
JVB_TCP_HARVESTER_DISABLED: "false"
ENABLE_RECORDING: "1"
DISPLAY: :0
TZ: Europe/Berlin
DISABLE_CERTIFICATE_VERIFICATION: "true"
ENABLE_HTTP_REDIRECT: "1"
ENABLE_LETSENCRYPT: "0"
apiVersion: v1
kind: Service
metadata:
labels:
service: jvb-jibri-deneme
name: jvb-udp-deneme
namespace: jitsi
spec:
type: NodePort
externalTrafficPolicy: Cluster
ports:
- port: 10000
protocol: UDP
targetPort: 10000
nodePort: 31000
selector:
k8s-app: jitsi-deneme
apiVersion: v1
kind: Service
metadata:
labels:
service: web-jibri-deneme
name: web-jibri-deneme
namespace: jitsi
spec:
externalTrafficPolicy: Cluster
ports:
- name: "http"
port: 80
targetPort: 80
nodePort: 30194
- name: "https"
port: 443
targetPort: 443
nodePort: 30195
type: NodePort
selector:
k8s-app: jitsi-deneme
Logs
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: create_conf, id=b3483428d92b33b6 gid=110276
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Gathering candidates for component stream-44928a8e.RTP.
Aug 18, 2021 11:09:08 AM org.ice4j.ice.harvest.CandidateHarvesterSetTask run
INFO: disabling harvester due to exception: hostname can't be null
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=44928a8e
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Ignoring empty DtlsFingerprint extension:
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Invalid message received (Could not resolve type id 'VideoTypeMessage' as a subtype of org.jitsi.videobridge.message.BridgeChannelMessage: known type ids = [AddReceiver, ClientHello, DominantSpeakerEndpointChangeEvent, EndpointConnectivityStatusChangeEvent, EndpointMessage, EndpointStats, LastNChangedEvent, LastNEndpointsChangeEvent, ReceiverVideoConstraint, ReceiverVideoConstraints, RemoveReceiver, SelectedEndpointChangedEvent, SelectedEndpointsChangedEvent, SenderVideoConstraints, ServerHello]
at [Source: (String)"{"colibriClass":"VideoTypeMessage","videoType":"camera"}"; line: 1, column: 17]): {"colibriClass":"VideoTypeMessage","videoType":"camera"}
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: The remote side is acting as DTLS client, we'll act as server
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting the Agent without remote candidates.
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start ICE connectivity establishment.
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Init checklist for stream stream-44928a8e
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Waiting to Running.
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Waiting new=Running
Aug 18, 2021 11:09:08 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start connectivity checks.
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:39755/udp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:55275/udp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:35542/udp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:9/tcp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:9/tcp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:9/tcp
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.24.0.1:35542/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.18.1.36:39755/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.17.0.1:55275/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.24.0.1:35542/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.18.1.36:39755/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.17.0.1:55275/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:11 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:09:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Spent 0 seconds oversending
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Running to Terminated.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Running new=Terminated
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=null
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Closing.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expired.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting connection status monitor
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: create_conf, id=40f81b57c6658342 gid=110276
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Gathering candidates for component stream-44928a8e.RTP.
Aug 18, 2021 11:09:22 AM org.ice4j.ice.harvest.CandidateHarvesterSetTask run
INFO: disabling harvester due to exception: hostname can't be null
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=44928a8e
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Ignoring empty DtlsFingerprint extension:
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: The remote side is acting as DTLS client, we'll act as server
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting the Agent without remote candidates.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start ICE connectivity establishment.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Init checklist for stream stream-44928a8e
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Waiting to Running.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Waiting new=Running
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start connectivity checks.
Aug 18, 2021 11:09:22 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Invalid message received (Could not resolve type id 'VideoTypeMessage' as a subtype of org.jitsi.videobridge.message.BridgeChannelMessage: known type ids = [AddReceiver, ClientHello, DominantSpeakerEndpointChangeEvent, EndpointConnectivityStatusChangeEvent, EndpointMessage, EndpointStats, LastNChangedEvent, LastNEndpointsChangeEvent, ReceiverVideoConstraint, ReceiverVideoConstraints, RemoveReceiver, SelectedEndpointChangedEvent, SelectedEndpointsChangedEvent, SenderVideoConstraints, ServerHello]
at [Source: (String)"{"colibriClass":"VideoTypeMessage","videoType":"camera"}"; line: 1, column: 17]): {"colibriClass":"VideoTypeMessage","videoType":"camera"}
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:59686/udp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:54820/udp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:40495/udp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:9/tcp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:9/tcp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:9/tcp
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.24.0.1:40495/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.18.1.36:59686/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.17.0.1:54820/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.24.0.1:40495/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.18.1.36:59686/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.17.0.1:54820/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=null
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Spent 0 seconds oversending
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Running to Terminated.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Running new=Terminated
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Closing.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expired.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting connection status monitor
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: create_conf, id=8d72b1661a87b6ce gid=110276
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Gathering candidates for component stream-44928a8e.RTP.
Aug 18, 2021 11:09:36 AM org.ice4j.ice.harvest.CandidateHarvesterSetTask run
INFO: disabling harvester due to exception: hostname can't be null
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=44928a8e
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Ignoring empty DtlsFingerprint extension:
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: The remote side is acting as DTLS client, we'll act as server
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting the Agent without remote candidates.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start ICE connectivity establishment.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Init checklist for stream stream-44928a8e
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Waiting to Running.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Waiting new=Running
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start connectivity checks.
Aug 18, 2021 11:09:36 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Invalid message received (Could not resolve type id 'VideoTypeMessage' as a subtype of org.jitsi.videobridge.message.BridgeChannelMessage: known type ids = [AddReceiver, ClientHello, DominantSpeakerEndpointChangeEvent, EndpointConnectivityStatusChangeEvent, EndpointMessage, EndpointStats, LastNChangedEvent, LastNEndpointsChangeEvent, ReceiverVideoConstraint, ReceiverVideoConstraints, RemoveReceiver, SelectedEndpointChangedEvent, SelectedEndpointsChangedEvent, SenderVideoConstraints, ServerHello]
at [Source: (String)"{"colibriClass":"VideoTypeMessage","videoType":"camera"}"; line: 1, column: 17]): {"colibriClass":"VideoTypeMessage","videoType":"camera"}
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:47300/udp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:46142/udp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:39254/udp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:9/tcp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:9/tcp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:9/tcp
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.24.0.1:39254/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.18.1.36:47300/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.17.0.1:46142/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.24.0.1:39254/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.18.1.36:47300/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.17.0.1:46142/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:38 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=null
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Spent 0 seconds oversending
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Running to Terminated.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Running new=Terminated
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting connection status monitor
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Closing.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: create_conf, id=8e100968fa08edd1 gid=110276
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expired.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Gathering candidates for component stream-44928a8e.RTP.
Aug 18, 2021 11:09:50 AM org.ice4j.ice.harvest.CandidateHarvesterSetTask run
INFO: disabling harvester due to exception: hostname can't be null
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=44928a8e
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Ignoring empty DtlsFingerprint extension:
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: The remote side is acting as DTLS client, we'll act as server
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Starting the Agent without remote candidates.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start ICE connectivity establishment.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Init checklist for stream stream-44928a8e
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Waiting to Running.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Waiting new=Running
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Start connectivity checks.
Aug 18, 2021 11:09:50 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Invalid message received (Could not resolve type id 'VideoTypeMessage' as a subtype of org.jitsi.videobridge.message.BridgeChannelMessage: known type ids = [AddReceiver, ClientHello, DominantSpeakerEndpointChangeEvent, EndpointConnectivityStatusChangeEvent, EndpointMessage, EndpointStats, LastNChangedEvent, LastNEndpointsChangeEvent, ReceiverVideoConstraint, ReceiverVideoConstraints, RemoveReceiver, SelectedEndpointChangedEvent, SelectedEndpointsChangedEvent, SenderVideoConstraints, ServerHello]
at [Source: (String)"{"colibriClass":"VideoTypeMessage","videoType":"camera"}"; line: 1, column: 17]): {"colibriClass":"VideoTypeMessage","videoType":"camera"}
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:41307/udp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:42615/udp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:43339/udp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.18.1.36:9/tcp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.17.0.1:9/tcp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Update remote candidate for stream-44928a8e.RTP: 172.24.0.1:9/tcp
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.24.0.1:43339/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.18.1.36:41307/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31000/udp/host -> 172.17.0.1:42615/udp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: new Pair added: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP).
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.24.0.1:43339/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.18.1.36:41307/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31000/udp/host -> 172.17.0.1:42615/udp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.24.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.18.1.36:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:52 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Pair failed: 10.37.0.1:31443/tcp/host -> 172.17.0.1:9/tcp/host (stream-44928a8e.RTP)
Aug 18, 2021 11:09:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ds_change ds_id=null
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Spent 0 seconds oversending
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Tearing down
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopping
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed from Running to Terminated.
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: ICE state changed old=Running new=Terminated
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Closing.
Aug 18, 2021 11:10:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expired.
Aug 18, 2021 11:10:06 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for a nonexistent endpoint: 44928a8e(conference 8e100968fa08edd1)
Aug 18, 2021 11:10:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for a nonexistent endpoint: 44928a8e(conference 8e100968fa08edd1)
Aug 18, 2021 11:10:12 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for a nonexistent endpoint: 44928a8e(conference 8e100968fa08edd1)
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Conference b3483428d92b33b6 should expire, expiring it
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Conference 8e100968fa08edd1 should expire, expiring it
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Conference 8d72b1661a87b6ce should expire, expiring it
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopped
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: expire_conf,duration=66,has_failed=true,has_partially_failed=false
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Conference 40f81b57c6658342 should expire, expiring it
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopped
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: expire_conf,duration=38,has_failed=true,has_partially_failed=false
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopped
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: expire_conf,duration=24,has_failed=true,has_partially_failed=false
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Expiring.
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Stopped
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: expire_conf,duration=52,has_failed=true,has_partially_failed=false
Aug 18, 2021 11:10:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:20 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:10:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:36 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:10:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:10:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:11:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:11:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:11:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:12:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:12:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:12:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:13:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:13:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:13:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:14:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:14:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:14:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:15:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:15:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:34 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:44 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:15:54 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:16:04 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:16:08 AM org.jitsi.utils.logging2.LoggerImpl log
WARNING: Received request for an nonexistent conference: 8e100968fa08edd1
Aug 18, 2021 11:16:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
Aug 18, 2021 11:16:14 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
Aug 18, 2021 11:16:24 AM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0S. Sticky failure: false
kind: Deployment
metadata:
labels:
k8s-app: jitsi-deneme
name: jitsi-deneme
namespace: jitsi
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
k8s-app: jitsi-deneme
template:
metadata:
labels:
k8s-app: jitsi-deneme
spec:
hostAliases:
- ip: '127.0.0.1'
hostnames:
- example.com
containers:
- name: web
image: jitsi/web:stable-5765
resources:
limits:
cpu: "1000m"
memory: 1024Mi
requests:
cpu: "50m"
memory: 100Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
volumeMounts:
- mountPath: /config
name: web-config
# - mountPath: /usr/share/jitsi-meet/images
# name: web-images
- name: jicofo
image: jitsi/jicofo:stable-5765
resources:
limits:
cpu: "500m"
memory: 1024Mi
requests:
cpu: "100m"
memory: 256Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
- name: prosody
image: jitsi/prosody:stable-5765
# args: ["/scriptss/./script.sh"]
resources:
limits:
cpu: "1000m"
memory: 1024Mi
requests:
cpu: "100m"
memory: 128Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
- name: jvb
image: jitsi/jvb:stable-5765
ports:
- containerPort: 10000
hostPort: 10000
resources:
limits:
cpu: "10000m"
memory: 8192Mi
requests:
cpu: "1000m"
memory: 512Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
- name: jibri
image: jitsi/jibri:stable-5765
resources:
limits:
cpu: "5000m"
memory: 8192Mi
requests:
cpu: "500m"
memory: 2048Mi
envFrom:
- configMapRef:
name: jitsi-env-auth-3
securityContext:
privileged: true
capabilities:
add:
- NET_BIND_SERVICE
- SYS_ADMIN
volumeMounts:
- mountPath: /dev/snd
name: dev-snd
- mountPath: /dev/shm
name: dev-shm
- mountPath: /config
name: config
securityContext:
privileged: true
volumes:
- name: dev-snd
hostPath:
path: /dev/snd
- name: dev-shm
hostPath:
path: /dev/shm
- name: config
hostPath:
path: /home/manager/jitsi-data/jibri-var/config
- name: web-config
hostPath:
path: /home/manager/jitsi-data/web-var-5870/config
Console Log
The AudioContext was not allowed to start. It must be resumed (or created) after a user gesture on the page. https://goo.gl/7K7WLu
(anonymous) @ lib-jitsi-meet.min.js:1
[Deprecation] Plan B SDP semantics, which is used when constructing an RTCPeerConnection with {sdpSemantics:"plan-b"}, is a legacy version of the Session Description Protocol that has severe compatibility issues on modern browsers. The standardized SDP format, "unified-plan", has been used by default since M72 (January, 2019). Dropping support for Plan B is targeted for M93. See https://www.chromestatus.com/feature/5823036655665152 for more details.
WrappedRTCPeerConnection @ unknown
[Deprecation] The ScriptProcessorNode is deprecated. Use AudioWorkletNode instead. (https://bit.ly/audio-worklet)
_initializeAudioContext @ lib-jitsi-meet.min.js:1
2021-08-19T07:56:04.081Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6q32nh1b4mt7f] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.081Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.082Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:56:04.082Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.082Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.082Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:56:04.082Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":1080}
2021-08-19T07:56:04.083Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6q32nh1b4mt7f] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.083Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.083Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:56:04.083Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.083Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.083Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:56:04.092Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[5,p2p:false] sdp-consistency replacing new ssrc1670154113 with cached 1670154113
2021-08-19T07:56:04.097Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
2021-08-19T07:56:04.097Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
2021-08-19T07:56:04.099Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle content-modify from [email protected]/fd423ee4
2021-08-19T07:56:04.100Z [modules/xmpp/JingleSessionPC.js] <C.modifyContents>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] received remote max frame height: 2160
2021-08-19T07:56:04.100Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6q32nh1b4mt7f] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.104Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.104Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:56:04.104Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:56:04.105Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:56:04.112Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:56:04.120Z [modules/xmpp/JingleSessionPC.js] Processing addRemoteStream
2021-08-19T07:56:04.120Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
Imploding SIM group: 3232334622 1029241629 3922029221
2021-08-19T07:56:04.131Z [JitsiConference.js] Suspended media transfer over the JVB connection !
2021-08-19T07:56:04.139Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "ZxYO"
2021-08-19T07:56:04.140Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:56:04.142Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "ZxYO"
2021-08-19T07:56:04.142Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T07:56:04.144Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[5,p2p:false] remote track added: 95440553-5483-4ad5-b40c-3abc042b8bcf-5 audio
2021-08-19T07:56:04.144Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[5,p2p:false] associated ssrc fd423ee4 1133201620
2021-08-19T07:56:04.144Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T07:56:04.144Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[5,p2p:false] remote track added: caf426bc-b5be-4028-8bdd-de3ff7e8ac8f-5 video
2021-08-19T07:56:04.144Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[5,p2p:false] associated ssrc fd423ee4 3232334622
2021-08-19T07:56:04.144Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T07:56:04.147Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidate>: sendIceCandidate: last candidate.
2021-08-19T07:56:04.149Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[5,p2p:false] sdp-consistency replacing new ssrc1670154113 with cached 1670154113
2021-08-19T07:56:04.152Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
2021-08-19T07:56:04.152Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
2021-08-19T07:56:04.155Z [modules/xmpp/JingleSessionPC.js] addRemoteStream - OK, SDPs: s s
2021-08-19T07:56:04.156Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T07:56:04.156Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
2021-08-19T07:56:04.160Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidates>: sendIceCandidates Array(2)
2021-08-19T07:56:04.163Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "ZxYO"
2021-08-19T07:56:04.163Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:56:04.163Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "ZxYO"
2021-08-19T07:56:04.163Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T07:58:14.308Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":0}
2021-08-19T07:58:14.308Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6q32nh1b4mt7f] setSenderVideoConstraint: 2160
2021-08-19T07:58:14.309Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:58:14.310Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[5,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:58:14.310Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:58:14.310Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:58:14.311Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:58:14.312Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
2021-08-19T07:58:14.312Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ lib-jitsi-meet.min.js:10
2021-08-19T07:58:15.058Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE failed P2P? false: 397677.10000038147
WebSocket connection to 'wss://172.18.1.71:30195/colibri-ws/10.37.0.1/21f646b3aefddb13/2e2093e0?pwd=2ldara1ulk8kgglt1hqdss0v4g' failed:
_initWebSocket @ lib-jitsi-meet.min.js:17
2021-08-19T07:58:15.516Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
2021-08-19T07:58:15.516Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ lib-jitsi-meet.min.js:10
2021-08-19T07:58:17.482Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: ICE failed, enableForcedReload: undefined, enableIceRestart: undefined, restartInProgress: undefined, supports restart by terminate: true
2021-08-19T07:58:17.482Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: failed, use 'session-terminate': true
2021-08-19T07:58:17.482Z [modules/xmpp/JingleSessionPC.js] <C.terminate>: Sending session-terminate
2021-08-19T07:58:17.482Z [modules/xmpp/JingleSessionPC.js] <C.onTerminated>: Session terminated JingleSessionPC[p2p=false,initiator=false,sid=6q32nh1b4mt7f] undefined undefined
2021-08-19T07:58:17.483Z [modules/RTC/TraceablePeerConnection.js] <A.close>: Closing TPC[5,p2p:false]...
WebSocket connection to 'wss://172.18.1.71:30195/colibri-ws/10.37.0.1/21f646b3aefddb13/2e2093e0?pwd=2ldara1ulk8kgglt1hqdss0v4g' failed:
_initWebSocket @ lib-jitsi-meet.min.js:17
2021-08-19T07:58:17.501Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
2021-08-19T07:58:17.501Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ lib-jitsi-meet.min.js:10
2021-08-19T07:58:17.502Z [modules/connectivity/IceFailedHandling.js] session-terminate for ice restart - done
2021-08-19T07:58:17.567Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle session-initiate from [email protected]/focus
2021-08-19T07:58:17.567Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: (TIME) received session-initiate: 400186.5
2021-08-19T07:58:17.567Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: Marking session from [email protected]/focus as not P2P
SdpSimulcast: using 3 layers
2021-08-19T07:58:17.569Z [modules/RTC/TraceablePeerConnection.js] <new A>: Create new TPC[6,p2p:false]
2021-08-19T07:58:17.571Z [JitsiConference.js] <ae._acceptJvbIncomingCall>: Starting CallStats for JVB connection...
2021-08-19T07:58:17.571Z [modules/statistics/RTPStatsCollector.js] <m.start>: Using RTCRtpSynchronizationSource for remote audio levels
2021-08-19T07:58:17.572Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[1,audio] to: TPC[6,p2p:false]
2021-08-19T07:58:17.573Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[2,video] to: TPC[6,p2p:false]
Halt: There are no SSRC groups in the remote description.
2021-08-19T07:58:17.588Z [modules/RTC/TraceablePeerConnection.js] <A._remoteStreamAdded>: TPC[6,p2p:false] ignored remote 'stream added' event for non-user streamid: mixedmslabel
2021-08-19T07:58:17.590Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[6,p2p:false] sdp-consistency caching primary ssrc2883601131
SdpSimulcast: current ssrc cache: Array(0)
SdpSimulcast: parsed primary ssrc 2883601131
SdpSimulcast: Have not seen primary ssrc before, generating source data
2021-08-19T07:58:17.595Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[1,audio] in TPC[6,p2p:false] Object
2021-08-19T07:58:17.595Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[2,video] in TPC[6,p2p:false] Object
2021-08-19T07:58:17.597Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle content-modify from [email protected]/fd423ee4
2021-08-19T07:58:17.597Z [modules/xmpp/JingleSessionPC.js] <C.modifyContents>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] received remote max frame height: 2160
2021-08-19T07:58:17.597Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6gu7u4o5050ou] setSenderVideoConstraint: 2160
2021-08-19T07:58:17.597Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[6,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:58:17.599Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[6,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:58:17.599Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:58:17.599Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:58:17.600Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:58:17.604Z [modules/xmpp/JingleSessionPC.js] <C.sendSessionAccept>: Sending session-accept
2021-08-19T07:58:17.609Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE checking P2P? false: 400228.5
2021-08-19T07:58:17.611Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:17.611Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:58:17.613Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:17.614Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T07:58:17.614Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onopen>: websocket channel opened
2021-08-19T07:58:17.614Z [JitsiConferenceEventManager.js] <a.>: (TIME) data.channel.opened: 400233.30000019073
2021-08-19T07:58:17.632Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6gu7u4o5050ou] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T07:58:17.632Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T07:58:17.633Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T07:58:17.633Z [modules/xmpp/JingleSessionPC.js] <C.sendContentModify>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] sending content-modify, video senders: both, max frame height: 2160
2021-08-19T07:58:17.634Z [features/video-quality] <Fr>: setReceiverVideoConstraint: 2160
2021-08-19T07:58:17.634Z [modules/RTC/BridgeChannel.js] <p.sendSelectedEndpointsMessage>: Sending selected endpoints: 2e2093e0,fd423ee4,02cd8ccb.
2021-08-19T07:58:17.635Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T07:58:17.635Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Received ServerHello, version=undefined.
2021-08-19T07:58:17.636Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: fd423ee4 active=false
2021-08-19T07:58:17.636Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: 2e2093e0 active=false
2021-08-19T07:58:17.641Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: New forwarded endpoints: fd423ee4
2021-08-19T07:58:17.642Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":1080}
2021-08-19T07:58:17.643Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6gu7u4o5050ou] setSenderVideoConstraint: 2160
2021-08-19T07:58:17.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[6,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T07:58:17.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[6,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T07:58:17.653Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T07:58:17.653Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T07:58:17.654Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T07:58:17.655Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-add from [email protected]/focus
2021-08-19T07:58:17.674Z [modules/xmpp/JingleSessionPC.js] Processing addRemoteStream
2021-08-19T07:58:17.674Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
Imploding SIM group: 1484564292 4144890404 1057343036
2021-08-19T07:58:17.688Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-remove from [email protected]/focus
2021-08-19T07:58:17.689Z [JitsiConference.js] <ae._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
2021-08-19T07:58:17.689Z [modules/xmpp/JingleSessionPC.js] <C.setMediaTransferActive>: Queued make video inactive, audio inactive task...
2021-08-19T07:58:17.692Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6gu7u4o5050ou] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T07:58:17.692Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T07:58:17.692Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoDegradationPreference>: Setting a degradation preference of maintain-framerate on local video track
2021-08-19T07:58:17.695Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[6,p2p:false] remote track added: 95440553-5483-4ad5-b40c-3abc042b8bcf-6 audio
2021-08-19T07:58:17.695Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[6,p2p:false] associated ssrc fd423ee4 2361829149
2021-08-19T07:58:17.695Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T07:58:17.696Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[6,p2p:false] remote track added: caf426bc-b5be-4028-8bdd-de3ff7e8ac8f-6 video
2021-08-19T07:58:17.696Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[6,p2p:false] associated ssrc fd423ee4 1484564292
2021-08-19T07:58:17.697Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T07:58:17.699Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[6,p2p:false] sdp-consistency replacing new ssrc2883601131 with cached 2883601131
2021-08-19T07:58:17.704Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:17.704Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:58:17.706Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:17.706Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T07:58:17.708Z [modules/xmpp/JingleSessionPC.js] addRemoteStream - OK, SDPs: s s
2021-08-19T07:58:17.709Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T07:58:17.709Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
2021-08-19T07:58:17.711Z [modules/xmpp/JingleSessionPC.js] Processing removeRemoteStream
2021-08-19T07:58:17.711Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
2021-08-19T07:58:17.716Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidate>: sendIceCandidate: last candidate.
2021-08-19T07:58:17.718Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[6,p2p:false] sdp-consistency replacing new ssrc2883601131 with cached 2883601131
2021-08-19T07:58:17.723Z [modules/xmpp/JingleSessionPC.js] removeRemoteStream - OK, SDPs: s s
2021-08-19T07:58:17.723Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T07:58:17.723Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
2021-08-19T07:58:17.727Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[6,p2p:false] sdp-consistency replacing new ssrc2883601131 with cached 2883601131
2021-08-19T07:58:17.729Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
2021-08-19T07:58:17.729Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
2021-08-19T07:58:17.731Z [JitsiConference.js] Suspended media transfer over the JVB connection !
2021-08-19T07:58:18.481Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidates>: sendIceCandidates Array(4)
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "P/s3"
2021-08-19T07:58:18.483Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:00:28.193Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE failed P2P? false: 530796.3000001907
2021-08-19T08:00:30.485Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: ICE failed, enableForcedReload: undefined, enableIceRestart: undefined, restartInProgress: undefined, supports restart by terminate: true
2021-08-19T08:00:30.485Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: failed, use 'session-terminate': true
2021-08-19T08:00:30.486Z [modules/xmpp/JingleSessionPC.js] <C.terminate>: Sending session-terminate
2021-08-19T08:00:30.488Z [modules/xmpp/JingleSessionPC.js] <C.onTerminated>: Session terminated JingleSessionPC[p2p=false,initiator=false,sid=6gu7u4o5050ou] undefined undefined
2021-08-19T08:00:30.489Z [modules/RTC/TraceablePeerConnection.js] <A.close>: Closing TPC[6,p2p:false]...
2021-08-19T08:00:30.520Z [modules/connectivity/IceFailedHandling.js] session-terminate for ice restart - done
2021-08-19T08:00:30.520Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
2021-08-19T08:00:30.521Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ lib-jitsi-meet.min.js:10
2021-08-19T08:00:30.596Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle session-initiate from [email protected]/focus
2021-08-19T08:00:30.596Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: (TIME) received session-initiate: 533215.6000003815
2021-08-19T08:00:30.597Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: Marking session from [email protected]/focus as not P2P
SdpSimulcast: using 3 layers
2021-08-19T08:00:30.599Z [modules/RTC/TraceablePeerConnection.js] <new A>: Create new TPC[7,p2p:false]
2021-08-19T08:00:30.600Z [JitsiConference.js] <ae._acceptJvbIncomingCall>: Starting CallStats for JVB connection...
2021-08-19T08:00:30.600Z [modules/statistics/RTPStatsCollector.js] <m.start>: Using RTCRtpSynchronizationSource for remote audio levels
2021-08-19T08:00:30.601Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[1,audio] to: TPC[7,p2p:false]
2021-08-19T08:00:30.602Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[2,video] to: TPC[7,p2p:false]
Halt: There are no SSRC groups in the remote description.
2021-08-19T08:00:30.611Z [modules/RTC/TraceablePeerConnection.js] <A._remoteStreamAdded>: TPC[7,p2p:false] ignored remote 'stream added' event for non-user streamid: mixedmslabel
2021-08-19T08:00:30.613Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[7,p2p:false] sdp-consistency caching primary ssrc127254525
SdpSimulcast: current ssrc cache: Array(0)
SdpSimulcast: parsed primary ssrc 127254525
SdpSimulcast: Have not seen primary ssrc before, generating source data
2021-08-19T08:00:30.617Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[1,audio] in TPC[7,p2p:false] Object
2021-08-19T08:00:30.617Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[2,video] in TPC[7,p2p:false] Object
2021-08-19T08:00:30.623Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle content-modify from [email protected]/fd423ee4
2021-08-19T08:00:30.623Z [modules/xmpp/JingleSessionPC.js] <C.modifyContents>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] received remote max frame height: 2160
2021-08-19T08:00:30.623Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=24s7f1v0d6fp9] setSenderVideoConstraint: 2160
2021-08-19T08:00:30.623Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[7,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T08:00:30.624Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[7,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T08:00:30.625Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T08:00:30.625Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T08:00:30.625Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T08:00:30.631Z [modules/xmpp/JingleSessionPC.js] <C.sendSessionAccept>: Sending session-accept
2021-08-19T08:00:30.640Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE checking P2P? false: 533259
2021-08-19T08:00:30.642Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:30.643Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T08:00:30.645Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:30.645Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:00:30.649Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onopen>: websocket channel opened
2021-08-19T08:00:30.650Z [JitsiConferenceEventManager.js] <a.>: (TIME) data.channel.opened: 533269
2021-08-19T08:00:30.682Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=24s7f1v0d6fp9] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:00:30.683Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:00:30.684Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:00:30.684Z [modules/xmpp/JingleSessionPC.js] <C.sendContentModify>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] sending content-modify, video senders: both, max frame height: 2160
2021-08-19T08:00:30.685Z [features/video-quality] <Fr>: setReceiverVideoConstraint: 2160
2021-08-19T08:00:30.686Z [modules/RTC/BridgeChannel.js] <p.sendSelectedEndpointsMessage>: Sending selected endpoints: 2e2093e0,fd423ee4,02cd8ccb.
2021-08-19T08:00:30.686Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:00:30.686Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Received ServerHello, version=undefined.
2021-08-19T08:00:30.688Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-add from [email protected]/focus
2021-08-19T08:00:30.690Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: fd423ee4 active=false
2021-08-19T08:00:30.691Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: 2e2093e0 active=false
2021-08-19T08:00:30.691Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":1080}
2021-08-19T08:00:30.695Z [modules/xmpp/JingleSessionPC.js] Processing addRemoteStream
2021-08-19T08:00:30.695Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
Imploding SIM group: 547543218 2477136365 3998559010
2021-08-19T08:00:30.702Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-remove from [email protected]/focus
2021-08-19T08:00:30.704Z [JitsiConference.js] <ae._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
2021-08-19T08:00:30.704Z [modules/xmpp/JingleSessionPC.js] <C.setMediaTransferActive>: Queued make video inactive, audio inactive task...
2021-08-19T08:00:30.707Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=24s7f1v0d6fp9] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:00:30.707Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:00:30.707Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoDegradationPreference>: Setting a degradation preference of maintain-framerate on local video track
2021-08-19T08:00:30.710Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[7,p2p:false] remote track added: 95440553-5483-4ad5-b40c-3abc042b8bcf-7 audio
2021-08-19T08:00:30.711Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[7,p2p:false] associated ssrc fd423ee4 2270370214
2021-08-19T08:00:30.711Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T08:00:30.711Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[7,p2p:false] remote track added: caf426bc-b5be-4028-8bdd-de3ff7e8ac8f-7 video
2021-08-19T08:00:30.711Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[7,p2p:false] associated ssrc fd423ee4 547543218
2021-08-19T08:00:30.711Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
2021-08-19T08:00:30.713Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[7,p2p:false] sdp-consistency replacing new ssrc127254525 with cached 127254525
2021-08-19T08:00:30.718Z [modules/xmpp/JingleSessionPC.js] addRemoteStream - OK, SDPs: s s
2021-08-19T08:00:30.718Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T08:00:30.719Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
2021-08-19T08:00:30.721Z [modules/xmpp/JingleSessionPC.js] Processing removeRemoteStream
2021-08-19T08:00:30.721Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
2021-08-19T08:00:30.729Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:30.729Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T08:00:30.731Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:30.731Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:00:30.732Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[7,p2p:false] sdp-consistency replacing new ssrc127254525 with cached 127254525
2021-08-19T08:00:30.736Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidate>: sendIceCandidate: last candidate.
2021-08-19T08:00:30.738Z [modules/xmpp/JingleSessionPC.js] removeRemoteStream - OK, SDPs: s s
2021-08-19T08:00:30.738Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T08:00:30.739Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
2021-08-19T08:00:30.745Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[7,p2p:false] sdp-consistency replacing new ssrc127254525 with cached 127254525
2021-08-19T08:00:30.748Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
2021-08-19T08:00:30.748Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
2021-08-19T08:00:30.750Z [JitsiConference.js] Suspended media transfer over the JVB connection !
2021-08-19T08:00:31.487Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidates>: sendIceCandidates Array(4)
2021-08-19T08:00:31.495Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:31.495Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T08:00:31.495Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:31.496Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:00:31.496Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:31.496Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T08:00:31.496Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "AAPX"
2021-08-19T08:00:31.496Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:02:41.298Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE failed P2P? false: 663911.8000001907
2021-08-19T08:02:43.483Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: ICE failed, enableForcedReload: undefined, enableIceRestart: undefined, restartInProgress: undefined, supports restart by terminate: true
2021-08-19T08:02:43.483Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: failed, use 'session-terminate': true
2021-08-19T08:02:43.484Z [modules/xmpp/JingleSessionPC.js] <C.terminate>: Sending session-terminate
2021-08-19T08:02:43.484Z [modules/xmpp/JingleSessionPC.js] <C.onTerminated>: Session terminated JingleSessionPC[p2p=false,initiator=false,sid=24s7f1v0d6fp9] undefined undefined
2021-08-19T08:02:43.486Z [modules/RTC/TraceablePeerConnection.js] <A.close>: Closing TPC[7,p2p:false]...
2021-08-19T08:02:43.510Z [modules/connectivity/IceFailedHandling.js] session-terminate for ice restart - done
2021-08-19T08:02:43.510Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
2021-08-19T08:02:43.510Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ lib-jitsi-meet.min.js:10
2021-08-19T08:02:43.513Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle session-initiate from [email protected]/focus
2021-08-19T08:02:43.513Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: (TIME) received session-initiate: 666132.6000003815
2021-08-19T08:02:43.513Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: Marking session from [email protected]/focus as not P2P
SdpSimulcast: using 3 layers
2021-08-19T08:02:43.518Z [modules/RTC/TraceablePeerConnection.js] <new A>: Create new TPC[8,p2p:false]
2021-08-19T08:02:43.521Z [JitsiConference.js] <ae._acceptJvbIncomingCall>: Starting CallStats for JVB connection...
2021-08-19T08:02:43.521Z [modules/statistics/RTPStatsCollector.js] <m.start>: Using RTCRtpSynchronizationSource for remote audio levels
2021-08-19T08:02:43.525Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[1,audio] to: TPC[8,p2p:false]
2021-08-19T08:02:43.527Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[2,video] to: TPC[8,p2p:false]
Halt: There are no SSRC groups in the remote description.
2021-08-19T08:02:43.557Z [modules/RTC/TraceablePeerConnection.js] <A._remoteStreamAdded>: TPC[8,p2p:false] ignored remote 'stream added' event for non-user streamid: mixedmslabel
2021-08-19T08:02:43.559Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onopen>: websocket channel opened
2021-08-19T08:02:43.559Z [JitsiConferenceEventManager.js] <a.>: (TIME) data.channel.opened: 666178.8000001907
2021-08-19T08:02:43.592Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:02:43.593Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:02:43.593Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:02:43.593Z [modules/xmpp/JingleSessionPC.js] <C.sendContentModify>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] sending content-modify, video senders: both, max frame height: 2160
2021-08-19T08:02:43.594Z [features/video-quality] <Fr>: setReceiverVideoConstraint: 2160
2021-08-19T08:02:43.594Z [modules/RTC/BridgeChannel.js] <p.sendSelectedEndpointsMessage>: Sending selected endpoints: 2e2093e0,fd423ee4,02cd8ccb.
2021-08-19T08:02:43.594Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:02:43.595Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[8,p2p:false] sdp-consistency caching primary ssrc1754005773
SdpSimulcast: current ssrc cache: Array(0)
SdpSimulcast: parsed primary ssrc 1754005773
SdpSimulcast: Have not seen primary ssrc before, generating source data
2021-08-19T08:02:43.602Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[1,audio] in TPC[8,p2p:false] Object
2021-08-19T08:02:43.602Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[2,video] in TPC[8,p2p:false] Object
2021-08-19T08:02:43.603Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Received ServerHello, version=undefined.
2021-08-19T08:02:43.603Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: fd423ee4 active=false
2021-08-19T08:02:43.604Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: 2e2093e0 active=false
2021-08-19T08:02:43.615Z [modules/xmpp/JingleSessionPC.js] <C.sendSessionAccept>: Sending session-accept
2021-08-19T08:02:43.618Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE checking P2P? false: 666237.7000002861
2021-08-19T08:02:43.620Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
2021-08-19T08:02:43.620Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
2021-08-19T08:02:43.622Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
2021-08-19T08:02:43.622Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
2021-08-19T08:02:43.640Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":180}
2021-08-19T08:02:43.640Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.640Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.640Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T08:02:43.640Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.640Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.641Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T08:02:43.641Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle content-modify from [email protected]/fd423ee4
2021-08-19T08:02:43.642Z [modules/xmpp/JingleSessionPC.js] <C.modifyContents>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] received remote max frame height: 2160
2021-08-19T08:02:43.642Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T08:02:43.643Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.643Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T08:02:43.644Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":0}
2021-08-19T08:02:43.644Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.644Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.645Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T08:02:43.645Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.645Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.645Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T08:02:43.646Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":1080}
2021-08-19T08:02:43.646Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.646Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.646Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[8,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
2021-08-19T08:02:43.646Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
2021-08-19T08:02:43.646Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
2021-08-19T08:02:43.646Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
2021-08-19T08:02:43.660Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-remove from [email protected]/focus
2021-08-19T08:02:43.664Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: New forwarded endpoints: fd423ee4
2021-08-19T08:02:43.666Z [modules/xmpp/JingleSessionPC.js] Processing removeRemoteStream
2021-08-19T08:02:43.666Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
Halt: There are no SSRC groups in the remote description.
2021-08-19T08:02:43.671Z [JitsiConference.js] <ae._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
2021-08-19T08:02:43.671Z [modules/xmpp/JingleSessionPC.js] <C.setMediaTransferActive>: Queued make video inactive, audio inactive task...
2021-08-19T08:02:43.673Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] setReceiverVideoConstraint - max frame height: 2160
2021-08-19T08:02:43.673Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
2021-08-19T08:02:43.673Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoDegradationPreference>: Setting a degradation preference of maintain-framerate on local video track
2021-08-19T08:02:43.677Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-add from [email protected]/focus
2021-08-19T08:02:43.678Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[8,p2p:false] sdp-consistency replacing new ssrc1754005773 with cached 1754005773
2021-08-19T08:02:43.684Z [modules/xmpp/JingleSessionPC.js] removeRemoteStream - OK, SDPs: s s
2021-08-19T08:02:43.688Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
2021-08-19T08:02:43.689Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
Halt: There are no SSRC groups in the remote description.
Logger.js:154 2021-08-19T08:02:43.695Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[8,p2p:false] sdp-consistency replacing new ssrc1754005773 with cached 1754005773
Logger.js:154 2021-08-19T08:02:43.703Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
Logger.js:154 2021-08-19T08:02:43.704Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
Logger.js:154 2021-08-19T08:02:43.713Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:43.713Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:02:43.715Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:43.715Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:02:43.718Z [modules/xmpp/JingleSessionPC.js] Processing addRemoteStream
Logger.js:154 2021-08-19T08:02:43.718Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
index.js:159 Imploding SIM group: 3949392601 3003215638 369046681
Logger.js:154 2021-08-19T08:02:43.723Z [JitsiConference.js] Suspended media transfer over the JVB connection !
Logger.js:154 2021-08-19T08:02:43.724Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidate>: sendIceCandidate: last candidate.
Logger.js:154 2021-08-19T08:02:43.725Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[8,p2p:false] remote track added: 95440553-5483-4ad5-b40c-3abc042b8bcf-8 audio
Logger.js:154 2021-08-19T08:02:43.725Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[8,p2p:false] associated ssrc fd423ee4 739501197
Logger.js:154 2021-08-19T08:02:43.725Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
Logger.js:154 2021-08-19T08:02:43.725Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[8,p2p:false] remote track added: caf426bc-b5be-4028-8bdd-de3ff7e8ac8f-8 video
Logger.js:154 2021-08-19T08:02:43.725Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[8,p2p:false] associated ssrc fd423ee4 3949392601
Logger.js:154 2021-08-19T08:02:43.725Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
Logger.js:154 2021-08-19T08:02:43.726Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[8,p2p:false] sdp-consistency replacing new ssrc1754005773 with cached 1754005773
Logger.js:154 2021-08-19T08:02:43.728Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
Logger.js:154 2021-08-19T08:02:43.729Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
Logger.js:154 2021-08-19T08:02:43.731Z [modules/xmpp/JingleSessionPC.js] addRemoteStream - OK, SDPs: s s
Logger.js:154 2021-08-19T08:02:43.732Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
Logger.js:154 2021-08-19T08:02:43.732Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
Logger.js:154 2021-08-19T08:02:44.482Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidates>: sendIceCandidates Array(4)
Logger.js:154 2021-08-19T08:02:44.486Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:44.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:02:44.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:44.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:02:44.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:44.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:02:44.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "/YKl"
Logger.js:154 2021-08-19T08:02:44.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:04:54.423Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE failed P2P? false: 797035
Logger.js:154 2021-08-19T08:04:56.484Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: ICE failed, enableForcedReload: undefined, enableIceRestart: undefined, restartInProgress: undefined, supports restart by terminate: true
Logger.js:154 2021-08-19T08:04:56.485Z [modules/connectivity/IceFailedHandling.js] <a._actOnIceFailed>: Sending ICE failed - the connection did not recover, ICE state: failed, use 'session-terminate': true
Logger.js:154 2021-08-19T08:04:56.485Z [modules/xmpp/JingleSessionPC.js] <C.terminate>: Sending session-terminate <iq to="[email protected]/focus" type="set" xmlns="jabber:client" id="7cc7f00a-1910-49fa-9352-e9bb166f6834:sendIQ">…
Logger.js:154 2021-08-19T08:04:56.486Z [modules/xmpp/JingleSessionPC.js] <C.onTerminated>: Session terminated JingleSessionPC[p2p=false,initiator=false,sid=ovji05of64ld] undefined undefined
Logger.js:154 2021-08-19T08:04:56.490Z [modules/RTC/TraceablePeerConnection.js] <A.close>: Closing TPC[8,p2p:false]...
Logger.js:154 2021-08-19T08:04:56.536Z [modules/connectivity/IceFailedHandling.js] session-terminate for ice restart - done
Logger.js:154 2021-08-19T08:04:56.536Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed by server
Logger.js:154 2021-08-19T08:04:56.537Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onclose>: Channel closed: 1006
o @ Logger.js:154
Logger.js:154 2021-08-19T08:04:56.573Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle session-initiate from [email protected]/focus <iq xmlns="jabber:client" type="set" to="[email protected]/3cBrVKXk" from="[email protected]/focus" id="MmUyMDkzZTAtMmFjYi00NDE5LWI5ZDYtZGY0ODYwZjg1ZTVlQDE3Mi4xOC4xLjcxLzNjQnJWS1hrAGd5UjNmLTM1NTIyAIwKSzKU5i6emonwVQezK0k=">…
Logger.js:154 2021-08-19T08:04:56.573Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: (TIME) received session-initiate: 799192.2000002861
Logger.js:154 2021-08-19T08:04:56.573Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: Marking session from [email protected]/focus as not P2P
index.js:44 SdpSimulcast: using 3 layers
Logger.js:154 2021-08-19T08:04:56.576Z [modules/RTC/TraceablePeerConnection.js] <new A>: Create new TPC[9,p2p:false]
Logger.js:154 2021-08-19T08:04:56.577Z [JitsiConference.js] <ae._acceptJvbIncomingCall>: Starting CallStats for JVB connection...
Logger.js:154 2021-08-19T08:04:56.577Z [modules/statistics/RTPStatsCollector.js] <m.start>: Using RTCRtpSynchronizationSource for remote audio levels
Logger.js:154 2021-08-19T08:04:56.578Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[1,audio] to: TPC[9,p2p:false]
Logger.js:154 2021-08-19T08:04:56.579Z [modules/RTC/TraceablePeerConnection.js] <A.addTrack>: add LocalTrack[2,video] to: TPC[9,p2p:false]
index.js:146 Halt: There are no SSRC groups in the remote description.
Logger.js:154 2021-08-19T08:04:56.593Z [modules/RTC/TraceablePeerConnection.js] <A._remoteStreamAdded>: TPC[9,p2p:false] ignored remote 'stream added' event for non-user streamid: mixedmslabel
Logger.js:154 2021-08-19T08:04:56.595Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[9,p2p:false] sdp-consistency caching primary ssrc1781338999
index.js:414 SdpSimulcast: current ssrc cache: Array(0)
index.js:415 SdpSimulcast: parsed primary ssrc 1781338999
index.js:424 SdpSimulcast: Have not seen primary ssrc before, generating source data
Logger.js:154 2021-08-19T08:04:56.599Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[1,audio] in TPC[9,p2p:false] Object
Logger.js:154 2021-08-19T08:04:56.599Z [modules/RTC/TraceablePeerConnection.js] <A._processLocalSSRCsMap>: Storing new local SSRC for LocalTrack[2,video] in TPC[9,p2p:false] Object
Logger.js:154 2021-08-19T08:04:56.606Z [modules/xmpp/JingleSessionPC.js] <C.sendSessionAccept>: Sending session-accept <iq to="[email protected]/focus" type="set" xmlns="jabber:client" id="84b617c3-f52c-4544-91b5-34b9730d18be:sendIQ">…
Logger.js:154 2021-08-19T08:04:56.609Z [modules/xmpp/JingleSessionPC.js] <A.peerconnection.oniceconnectionstatechange>: (TIME) ICE checking P2P? false: 799228.1000003815
Logger.js:154 2021-08-19T08:04:56.612Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:56.612Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:04:56.623Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:56.624Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:04:56.624Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onopen>: websocket channel opened
Logger.js:154 2021-08-19T08:04:56.624Z [JitsiConferenceEventManager.js] <a.>: (TIME) data.channel.opened: 799243.4000000954
Logger.js:154 2021-08-19T08:04:56.637Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setReceiverVideoConstraint - max frame height: 2160
Logger.js:154 2021-08-19T08:04:56.638Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
Logger.js:154 2021-08-19T08:04:56.638Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setReceiverVideoConstraint - max frame height: 2160
Logger.js:154 2021-08-19T08:04:56.638Z [modules/xmpp/JingleSessionPC.js] <C.sendContentModify>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] sending content-modify, video senders: both, max frame height: 2160
Logger.js:154 2021-08-19T08:04:56.638Z [features/video-quality] <Fr>: setReceiverVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.639Z [modules/RTC/BridgeChannel.js] <p.sendSelectedEndpointsMessage>: Sending selected endpoints: 2e2093e0,fd423ee4,02cd8ccb.
Logger.js:154 2021-08-19T08:04:56.639Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
Logger.js:154 2021-08-19T08:04:56.639Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Received ServerHello, version=undefined.
Logger.js:154 2021-08-19T08:04:56.640Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-remove from [email protected]/focus <iq xmlns="jabber:client" type="set" to="[email protected]/3cBrVKXk" from="[email protected]/focus" id="MmUyMDkzZTAtMmFjYi00NDE5LWI5ZDYtZGY0ODYwZjg1ZTVlQDE3Mi4xOC4xLjcxLzNjQnJWS1hrAGd5UjNmLTM1NTI5AIwKSzKU5i6emonwVQezK0k=">…
Logger.js:154 2021-08-19T08:04:56.640Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: fd423ee4 active=false
Logger.js:154 2021-08-19T08:04:56.640Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: Endpoint connection status changed: 2e2093e0 active=false
Logger.js:154 2021-08-19T08:04:56.641Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":180}
Logger.js:154 2021-08-19T08:04:56.641Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.641Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.641Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
Logger.js:154 2021-08-19T08:04:56.641Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.641Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.642Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
Logger.js:154 2021-08-19T08:04:56.642Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: New forwarded endpoints: fd423ee4
Logger.js:154 2021-08-19T08:04:56.645Z [modules/xmpp/JingleSessionPC.js] Processing removeRemoteStream
Logger.js:154 2021-08-19T08:04:56.645Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
index.js:146 Halt: There are no SSRC groups in the remote description.
Logger.js:154 2021-08-19T08:04:56.656Z [JitsiConference.js] <ae._suspendMediaTransferForJvbConnection>: Suspending media transfer over the JVB connection...
Logger.js:154 2021-08-19T08:04:56.656Z [modules/xmpp/JingleSessionPC.js] <C.setMediaTransferActive>: Queued make video inactive, audio inactive task...
Logger.js:154 2021-08-19T08:04:56.659Z [modules/xmpp/JingleSessionPC.js] <C.setReceiverVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setReceiverVideoConstraint - max frame height: 2160
Logger.js:154 2021-08-19T08:04:56.659Z [modules/RTC/BridgeChannel.js] <p.sendReceiverVideoConstraintMessage>: Sending ReceiverVideoConstraint with maxFrameHeight=2160px
Logger.js:154 2021-08-19T08:04:56.659Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoDegradationPreference>: Setting a degradation preference of maintain-framerate on local video track
Logger.js:154 2021-08-19T08:04:56.665Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":0}
Logger.js:154 2021-08-19T08:04:56.665Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.665Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.666Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
Logger.js:154 2021-08-19T08:04:56.666Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.666Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.666Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
Logger.js:154 2021-08-19T08:04:56.669Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle source-add from [email protected]/focus <iq xmlns="jabber:client" type="set" to="[email protected]/3cBrVKXk" from="[email protected]/focus" id="MmUyMDkzZTAtMmFjYi00NDE5LWI5ZDYtZGY0ODYwZjg1ZTVlQDE3Mi4xOC4xLjcxLzNjQnJWS1hrAGd5UjNmLTM1NTM0AIwKSzKU5i6emonwVQezK0k=">…
Logger.js:154 2021-08-19T08:04:56.672Z [modules/xmpp/strophe.jingle.js] <g.onJingle>: on jingle content-modify from [email protected]/fd423ee4 <iq xmlns="jabber:client" type="set" to="[email protected]/3cBrVKXk" from="[email protected]/fd423ee4" id="MmUyMDkzZTAtMmFjYi00NDE5LWI5ZDYtZGY0ODYwZjg1ZTVlQDE3Mi4xOC4xLjcxLzNjQnJWS1hrAGUxN2YxZTQ4LTRiM2UtNGI0Yy1iNzgxLTU5MDc4ZDM4YWI1MjpzZW5kSVEAM9HWSMPlRDJdZ6IoqciR3g==">…
Logger.js:154 2021-08-19T08:04:56.673Z [modules/xmpp/JingleSessionPC.js] <C.modifyContents>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] received remote max frame height: 2160
Logger.js:154 2021-08-19T08:04:56.673Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.673Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.674Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
Logger.js:154 2021-08-19T08:04:56.674Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.675Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.675Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
Logger.js:154 2021-08-19T08:04:56.676Z [modules/RTC/BridgeChannel.js] <WebSocket.e.onmessage>: SenderVideoConstraints: {"idealHeight":1080}
Logger.js:154 2021-08-19T08:04:56.677Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=false,initiator=false,sid=6ul6dj1a3h777] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.677Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.677Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[9,p2p:false] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"},{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low"}]
Logger.js:154 2021-08-19T08:04:56.677Z [modules/xmpp/JingleSessionPC.js] <C.setSenderVideoConstraint>: JingleSessionPC[p2p=true,initiator=true,sid=135b5dd26e1a] setSenderVideoConstraint: 2160
Logger.js:154 2021-08-19T08:04:56.677Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] senderVideoMaxHeight: 2160
Logger.js:154 2021-08-19T08:04:56.678Z [modules/RTC/TraceablePeerConnection.js] <A.setSenderVideoConstraint>: TPC[4,p2p:true] setting max height of 2160, encodings: [{"active":true,"adaptivePtime":false,"networkPriority":"low","priority":"low","scaleResolutionDownBy":1}]
Logger.js:154 2021-08-19T08:04:56.681Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[9,p2p:false] sdp-consistency replacing new ssrc1781338999 with cached 1781338999
Logger.js:154 2021-08-19T08:04:56.690Z [modules/xmpp/JingleSessionPC.js] removeRemoteStream - OK, SDPs: s s
Logger.js:154 2021-08-19T08:04:56.690Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
Logger.js:154 2021-08-19T08:04:56.690Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
index.js:146 Halt: There are no SSRC groups in the remote description.
Logger.js:154 2021-08-19T08:04:56.694Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[9,p2p:false] sdp-consistency replacing new ssrc1781338999 with cached 1781338999
Logger.js:154 2021-08-19T08:04:56.697Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
Logger.js:154 2021-08-19T08:04:56.697Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
Logger.js:154 2021-08-19T08:04:56.701Z [modules/xmpp/JingleSessionPC.js] Processing addRemoteStream
Logger.js:154 2021-08-19T08:04:56.701Z [modules/xmpp/JingleSessionPC.js] ICE connection state: checking
index.js:159 Imploding SIM group: 142802153 1777304116 1999189116
Logger.js:154 2021-08-19T08:04:56.706Z [JitsiConference.js] Suspended media transfer over the JVB connection !
Logger.js:154 2021-08-19T08:04:56.710Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:56.710Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:04:56.714Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:56.714Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:04:56.715Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidate>: sendIceCandidate: last candidate.
Logger.js:154 2021-08-19T08:04:56.721Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[9,p2p:false] remote track added: 95440553-5483-4ad5-b40c-3abc042b8bcf-9 audio
Logger.js:154 2021-08-19T08:04:56.721Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[9,p2p:false] associated ssrc fd423ee4 3116580129
Logger.js:154 2021-08-19T08:04:56.721Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
Logger.js:154 2021-08-19T08:04:56.721Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[9,p2p:false] remote track added: caf426bc-b5be-4028-8bdd-de3ff7e8ac8f-9 video
Logger.js:154 2021-08-19T08:04:56.721Z [modules/RTC/TraceablePeerConnection.js] <A._remoteTrackAdded>: TPC[9,p2p:false] associated ssrc fd423ee4 142802153
Logger.js:154 2021-08-19T08:04:56.722Z [JitsiConference.js] <ae.onRemoteTrackAdded>: Trying to add remote JVB track, when in P2P - IGNORED
Logger.js:154 2021-08-19T08:04:56.723Z [modules/xmpp/SdpConsistency.js] <o.makeVideoPrimarySsrcsConsistent>: TPC[9,p2p:false] sdp-consistency replacing new ssrc1781338999 with cached 1781338999
Logger.js:154 2021-08-19T08:04:56.726Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local audio direction to inactive
Logger.js:154 2021-08-19T08:04:56.726Z [modules/RTC/TraceablePeerConnection.js] <A._adjustLocalMediaDirection>: Adjusted local video direction to inactive
Logger.js:154 2021-08-19T08:04:56.729Z [modules/xmpp/JingleSessionPC.js] addRemoteStream - OK, SDPs: s s
Logger.js:154 2021-08-19T08:04:56.730Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: removal not necessary
Logger.js:154 2021-08-19T08:04:56.730Z [modules/xmpp/JingleSessionPC.js] <C.notifyMySSRCUpdate>: addition not necessary
Logger.js:154 2021-08-19T08:04:57.481Z [modules/xmpp/JingleSessionPC.js] <C.sendIceCandidates>: sendIceCandidates Array(4)
Logger.js:154 2021-08-19T08:04:57.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:57.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:04:57.487Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:57.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"
Logger.js:154 2021-08-19T08:04:57.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:57.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "1"
Logger.js:154 2021-08-19T08:04:57.488Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "ufrag" = "i5qM"
Logger.js:154 2021-08-19T08:04:57.489Z [modules/xmpp/SDPUtil.js] <Object.candidateToJingle>: not translating "network-id" = "2"