Live streaming
Loading…
Streaming credentials are shared via IRC — ask there for the current publish URL/password. This is a single shared stream: whoever is currently publishing is what everyone sees.
OBS Studio works great on any OS (Linux/X11, Wayland, macOS, Windows) and is the easiest option for most people — screen/window capture, audio mixing, and encoder settings are all handled in the UI. If you'd rather use a terminal-only workflow, ffmpeg one-liners are also available below depending on your setup.
If you're on X11 (or a Wayland session with Xwayland exposing
:0.0), this captures your screen + default audio
directly, no extra tools needed:
ffmpeg -f x11grab -framerate 30 -i :0.0 -f pulse -i default -c:v libx264 -preset veryfast -tune zerolatency -pix_fmt yuv420p -c:a aac -b:a 128k -f flv "<url you were given>"
Swap -preset veryfast for ultrafast on
weaker machines, or fast/medium if you
have CPU to spare. RTMP/FLV requires H.264 video and AAC audio —
other codecs won't work here.
For rebroadcasting a pre-recorded file or another running stream instead of capturing your screen:
ffmpeg -re -i input -c:v libx264 -c:a aac -f flv "<url you were given>"
On Wayland (non-X11) screen capture generally needs a portal/PipeWire flow rather than a single ffmpeg command — OBS handles this transparently across compositors, which is why it's the recommended option there.
In your browser:
https://{{ domain }}/<path>
Or directly in mpv (or any HLS-capable player):
mpv https://{{ domain }}/<path>/index.m3u8
Replace <path> with the stream name in use (e.g., live).