{% extends 'base.html' %} {% block content %}

{{ stream.name }}

Åbn streamer-panel Rediger

Preview

HLS: {{ public_hls }}

Status

LIVE: {{ 'Ja' if stream.is_live else 'Nej' }}

Publish: {{ 'Åben' if stream.active else 'Lukket' }}

Video: {{ stats.video_codec or '-' }} {{ stats.width or '-' }}x{{ stats.height or '-' }} / {{ stats.fps or '-' }} FPS

Lyd: {{ stats.audio_codec or '-' }} / {{ stats.audio_sample_rate or '-' }} Hz / {% if stats.audio_channels == 1 %}MONO ⚠️{% elif stats.audio_channels %}{{ stats.audio_channels }} ch{% else %}-{% endif %}

Bitrate: {% if stats.bitrate %}{{ (stats.bitrate / 1000)|round(1) }} kbps{% else %}-{% endif %}

RTMP ingest:
{{ ingest }}

Chat

{% if stream.chat_url %} {% else %}

Ingen chat sat op.

{% endif %}

Hændelseslog

{% for log in logs %}
{{ log.created_at.strftime('%Y-%m-%d %H:%M:%S') }} — {{ log.message }}
{% endfor %}
{% endblock %}