Room: {{ room.name }}

Room Information

{{ room.id }}
{{ room.password }}
{{ room.max_connections }}
{{ room.created_at }}
{{ room.created_by }}
{{ room_stats.total_clients }} / {{ room.max_connections }}
{{ room_stats.active_streams }}
{{ (room_stats.bytes_transferred / 1024 / 1024)|round(2) }} MB

Client Connection Information

Clients can connect to this room using:

WebSocket URL: ws://{{ server_host }}:{{ server_port }}/ws/client/{{ room.id }}/{{ room.password }}

Room ID: {{ room.id }}

Password: {{ room.password }}

Connected Clients ({{ clients|length }})

{% if clients %}
{% for client in clients %} {% endfor %}
Client ID IP Address Connected At Status Video Settings Actions
{{ client.id[:8] }}... {{ client.ip_address }} {{ client.connected_at }} {% if client.is_streaming %} Streaming {% else %} Idle {% endif %} {{ client.video_settings.quality }}% Quality
{{ client.video_settings.frame_rate }} FPS
{% else %}

No clients connected to this room yet.

Share the connection information above with clients.

{% endif %}