{{ domain }}

Live streaming

Checking stream status…

Recent streams

Loading…

How to stream

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.

Option A: OBS Studio

  1. Open OBS, go to Settings → Stream, set Service to Custom..., and paste the full URL you were given into the Server field, leaving Stream Key empty.
  2. Add your capture sources (screen/window/game capture + audio) as normal, then click Start Streaming.

Option B: ffmpeg one-liner (Linux, X11)

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.

Option C: ffmpeg with a file/other source

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.

How to watch

Open this URL in your browser:

https://{{ domain }}/<path>

Replace <path> with the stream name in use (e.g., live).