- New scripts/provision-stream-droplet.sh (modeled on gpu one) for cheap DO droplet with docker + v4l2loopback + mediamtx ready. - scripts/hotel-srt-push.sh: macOS ffmpeg one-liner helper for reliable modest-bitrate SRT contribution over bad WiFi. - New @features/broadcast/controller/: self-contained Bun server with embedded Tailwind chat UI, full xAI Grok-4.3 tool-calling agent, pure-WebSocket obs-websocket v5 client, dynamic destination + ffmpeg fanout manager. - Full docs + RUNBOOK with architecture, provisioning, hotel push, OBS notes, security, troubleshooting, and verification notes. - Matches the 'RTMP relay for simulcast' vision already promised in performer marketing. The hotel side sends ~3 Mbps SRT. All compute, final encode, and broadcast bitrate (to Twitch/YouTube/etc.) happens on the DO network. Control is natural language chat to the LLM.
8 lines
No EOL
161 B
Docker
8 lines
No EOL
161 B
Docker
FROM oven/bun:1.2-alpine AS base
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN bun install --production
|
|
COPY . .
|
|
EXPOSE 8080
|
|
ENV PORT=8080
|
|
CMD ["bun", "run", "index.ts"] |