Install#
uv tool install 'c64cast[all]' # or: pipx install 'c64cast[all]'
c64cast --config example:hello -u u64://192.168.2.64
That puts a c64cast command on your PATH. To try it without installing anything permanently:
uvx --from 'c64cast[all]' c64cast clip.mp4 -u u64://192.168.2.64
[all] pulls in every optional feature — video files and YouTube URLs, mic capture, MIDI, webcam gestures, the WLED bridge, the HTTP control plane, the config wizard. Plain uv tool install c64cast gets a much smaller core install (no mediapipe, no yt-dlp) that still covers every generative scene, PETSCII/ bitmap rendering, SID playback, and overlays; add extras à la carte later (uv tool install 'c64cast[video,midi]'). Extras don't accumulate, so name every one you want in a single command.
You need a reachable Ultimate 64 or TeensyROM+ — there is no emulator path for the streaming side. An Ultimate ships with the services c64cast needs switched off, and they are three separate switches in two different menus under F2: Ultimate DMA Service and Web Remote Control Service under Network Settings, and Command Interface under Memory Configuration. Save and reboot afterwards. Miss the Command Interface and c64cast connects and then hangs rather than printing anything useful, so it is worth following Quick Start through the menus the first time.
What do you want to do?#
Every row below is a runnable demo that ships inside the package — pass it to --config and it loops forever until you Ctrl+C. Point it at your hardware with -u (see Quick start). The Programmer's Reference Guide documents every option for these scenes and overlays.
| I want to… | Try | Reference |
|---|---|---|
| Play a video (or YouTube URL) | c64cast clip.mp4 · example:scene-video | Quick playback |
| Play an audio track with visuals that react to it | c64cast tune.mp3 | Quick playback |
| Show a live webcam as C64 art | example:scene-webcam-petscii | webcam |
| Visualize a SID tune (oscilloscope) | example:scene-waveform | waveform |
| Play a SID from a MIDI keyboard | example:scene-midi | midi |
| Stream from DeepSID / SIDFactory II | example:scene-asid | asid |
| Slideshow of images | example:scene-slideshow | slideshow |
| Generative / music-reactive visuals | example:scene-generative-plasma | generative |
| Stack pixel effects on any scene | example:effect-chain | Generators + effects |
| Play the show live from a controller or a phone | example:performance-clips | Performing |
Run a native .prg/.crt game or demo | example:scene-launcher | launcher |
| An info board (clock/weather/RSS) | example:overlay-clock | Overlays |
| Drive multiple C64s as one video wall | example:ensemble/master | Ensemble mode |
| Make the C64 a WLED LED matrix | example:scene-wled | wled |
| Control c64cast from the WLED app | example:wled-control | WLED bridge |
Run any of them with c64cast --config example:<name>, or list the whole set with c64cast --list-examples (one demo per scene type and per overlay).
Features#
Scenes — a TOML playlist runs any mix of these on the real C64, each for a set duration, with an "UP NEXT" interstitial between them:
- Video — MP4/MKV/etc. (and YouTube/other URLs via yt-dlp), soundtrack and all, keyed off the audio clock so A/V can't drift.
- Webcam — live capture quantized to any display mode in real time.
- Slideshow — still images from a directory/glob, aspect-fit.
- SID waveform — a
.sidplaying natively on the real chip (via a small player PRG, not the firmware's own runner) under a per-voice oscilloscope. Multi-SID tunes too — up to 8 chips using the U64's UltiSIDs. - MIDI → SID and ASID client — a live MIDI source (USB controller, DAW) or an ASID stream (DeepSID, SIDFactory II, Plogue chipsynth C64) played through the real SID under the same scope (
midiextra). - Generative — 20 procedural sources (plasma, tunnel, fire, mandelbrot, metaballs, game of life, fireworks, soap, …), about half of them ports of WLED effects, optionally music-reactive.
- Launcher — hand the machine over to a native
.prg/.crtgame or demo, then reclaim it. - WLED matrix — the C64 as a virtual LED matrix, fed live pixels by LedFx / xLights (DDP or WLED realtime UDP).
- Blank — a solid PETSCII canvas for title cards + overlays.
Display + audio — six VIC-II display modes (hires, hires_edges, mhires, petscii, mcm, blank), each with its own vectorized quantizer (≈30 fps bitmap, 50/60 fps char over a LAN). Audio plays through the SID's lo-fi $D418 DAC (4-bit, or ≈6-7-bit via the Mahoney companding technique) or, on the U64, the high-fidelity Ultimate Audio FPGA PCM sampler.
Overlays — stack on any compatible scene: scrolling text, marquee, RSS ticker, spectrum analyzer (PETSCII bars or pixel-resolution bitmap ones), clock, weather, callsign, countdown, network info, multi-line logo, demo-scene big text, OBS Studio status.
Pixel effects — eight of them (trails, pulse, RGB shift, blur, strobe, invert, mirror, posterize), layerable into an ordered chain on any scene that carries a frame. Every layer is independently tunable and bypass-toggleable while the show runs, and can be modulated by the music or locked to the beat grid.
Live performance — a MIDI controller or a phone drives the whole show: a clip-launch grid quantized to a tempo, live parameter targets on the knobs, pad LEDs that reflect state, saved "looks" to recall a whole configuration. See Live control.
Ensemble mode — one process drives N systems at once as a video wall, with cross-system orchestration (e.g. a big_text message scrolling across every screen as a single canvas).
WLED bridge — interoperate with the WLED LED ecosystem in three directions, all under one [wled] config section: drive real LED matrices from the C64's SID with no microphone (audio-sync broadcast), present c64cast as a virtual WLED device the WLED app / Home Assistant can discover and control (effects ↔ scenes, sliders ↔ live params, presets), and turn the C64 into a virtual LED matrix that LedFx / xLights stream live pixels to. See WLED bridge for the full reference.
Preview + recording — an optional desktop window and an MP4 writer, both fed by a host-side reconstruction of the bytes c64cast sent rather than a capture of the Commodore's own output. Both are cv2-based, so neither needs an extra, but the window wants a desktop session and a GUI-capable opencv build. Know what it cannot show you before you rely on it: a launcher scene is blank, and bitmap scenes are black on the staged and double-buffered video paths — which are the defaults — until you set [video].use_reu_staged = false. See The Preview Window for the full list. Proving what the VIC actually put on HDMI needs a capture device, not this.
Quick start#
# "Hello world": scrolls big text across a solid canvas. Needs nothing but a
# reachable U64/TR+ — no webcam, mic, SID, or video files. Ctrl-C to exit.
c64cast --config example:hello -u u64://192.168.2.64
# Save the connection target so you never type -u again:
c64cast -u u64://192.168.2.64 --save-settings
c64cast --config example:hello
-u/--url is a scheme-aware target that picks the backend + endpoint: u64://HOST or http(s)://HOST (Ultimate 64 / II+), tr:// (TeensyROM+ over auto-detected USB serial), tr:///dev/cu.usbmodem* / tr://COM3 (a specific serial device), or tr://HOST (TeensyROM+ over TCP). $C64CAST_URL is the env fallback, and --save-settings persists it — along with the capture device and SID model — to ~/.config/c64cast/settings.toml, where it applies to every later run including quick playback.
The first run against a machine spends about a second reading that machine's character ROM over the wire and caching it under ~/.local/share/c64cast/, so every glyph c64cast draws is your Commodore's own font rather than a built-in approximation. --install-char-rom PATH uses a dump you already have (no hardware needed) and --dump-char-rom re-reads on demand.
From example:hello, the next steps:
# Try a single feature in isolation — one demo per scene type / overlay:
c64cast --config example:scene-webcam-petscii
c64cast --config example:overlay-clock
# Build your own: the wizard walks you through a single scene or a whole
# playlist and writes a ./c64cast.toml, which later runs pick up on their own
# (needs the 'wizard' extra, included in [all]):
c64cast --init
# ...or by hand, starting from the fully-annotated reference config:
c64cast --print-example c64cast.example > c64cast.toml && $EDITOR c64cast.toml
c64cast
# Check a config and your installed extras without touching the C64:
c64cast --doctor --config c64cast.toml --skip-probe
The demos ship inside the package, so example:NAME works the same from an installed wheel, from uvx, or from a git checkout — c64cast/examples/README.md is the narrative tour of them.
c64cast -h lists every CLI flag grouped by section (connection, quick playback, video input, audio, vision input, playlist, introspection, debug).
Quick playback (no config file)#
Pass media files/directories/globs/URLs as positional arguments to play them once, in order, without writing a TOML (mutually exclusive with --config). Audio is on by default; --no-audio mutes.
# A video, a SID tune, then a folder of pictures, on an Ultimate 64:
c64cast -u u64://192.168.1.64 clip.mp4 tune.sid ~/Pictures/
# An audio file: the track plays through the C64 while a generative visual
# reacts to it.
c64cast tune.mp3
# A clip on a TeensyROM+ over auto-detected USB serial:
c64cast -u tr:// clip.mp4
# A YouTube URL (needs the 'yt' extra, included in [all]):
c64cast 'https://youtu.be/dQw4w9WgXcQ'
Configuration#
A config is a single TOML file (--config PATH, else ./c64cast.toml, else built-in defaults) that defines the playlist and every overridable option. c64cast --init builds one interactively, --print-example c64cast.example prints a fully-annotated one to edit, and --doctor --skip-probe validates the result without touching the C64.
The whole config surface is discoverable from the command line — --describe, --list-scenes, --list-overlays, --list-modes, --compat, --print-schema (a JSON Schema for editor autocomplete) — and every one of those reads the same field metadata the loader runs on, so the answers can't drift from the code. See The Configuration Language for the complete walkthrough and Appendix A for every section and field.
Live control#
While the show is running, you control it from the C64's own keyboard — c64cast polls the kernal's keyboard scratch bytes at 10 Hz:
| Key on the C64 | What it does |
|---|---|
| C= (Commodore) | Pause (the scene tears down and the machine idles); hold 3 s while paused to resume |
| CTRL | Skip to the next scene |
| SHIFT | Cycle the style of the scene, the display mode and every overlay |
| SPACE | Open the on-C64 menu of live knobs, with [menu].enabled |
Chords are resolved rather than combined — C= and CTRL together means pause.
The same actions, plus a great deal more, are available off the machine:
- A MIDI controller — a clip-launch grid quantized to a beat grid (MIDI clock or tap tempo), CC knobs mapped to live parameter targets, pad LEDs driven from actual state, and saved looks that recall a scene and its whole effect chain in one press (
midiextra). - A phone or laptop —
GET /perfon the control-plane server below serves a touch console with the clip grid, an effect rack, the tempo, and the looks. No app to install, and nothing it does reaches the audience's screen. - Webcam gestures — swipe to change mode, pinch to pause (
visionextra). - HTTP + signals — with
[control] enabled = true:
curl -X POST http://127.0.0.1:8765/pause
curl -X POST http://127.0.0.1:8765/resume
curl -X POST http://127.0.0.1:8765/skip
curl -X POST http://127.0.0.1:8765/reload # re-read [[scenes]] from disk
On macOS and Linux, SIGHUP is the control-plane-free spelling of that reload. Windows has no SIGHUP, so POST /reload is the portable route.
Inputs and Outputs documents every surface in full, and the Performance Card is the printable version for the desk beside the controller.
Documentation#
Everything below is also a website: <https://kfox.github.io/c64cast/> reads all three books and the notes beneath them in one place, built from these same files on every push to main.
- docs/guide/ — the User's Guide: a friendly, read-in-order introduction that starts from nothing and builds up. Start at Quick Start, or download the typeset PDF.
- docs/reference/ — the Programmer's Reference Guide: the volume you open at the page you need. The rules of the configuration language, every scene and overlay, the display and sound paths in full, what lands in the Commodore's memory, and ten appendices, nine of them generated from the code. PDF.
- docs/card/ — the Performance Card: two printable pages of controls, live targets and clip-grid syntax for the desk beside the controller. PDF.
- docs/caveats.md — known quirks (6502 emulator scope, char ROM substitution, U64 endpoint variance, licensing of SIDs / videos)
- docs/troubleshooting.md — symptom-first index for "I saw X, what now?"
- docs/extending.md — how to add a new Scene, Overlay, DisplayMode, or interstitial Background
- docs/architecture.md — per-module internals: design rationale, hardware constraints, and edge-case history. Split by topic area under docs/architecture/; the index routes each module to its notes
- CHANGELOG.md — what changed in each release
Each PDF link above always serves the newest release; every past release keeps its own version-stamped copy on its release page.
Hardware needed#
One of the following:
- An Ultimate 64 — confirmed with Elite I, Elite II, Ultimate II+ cartridge, or Commodore 64 Ultimate. Best results will be obtained from using the Elite II or the Commodore 64 Ultimate. Three firmware switches, in two menus under F2, then save and reboot:
- Ultimate DMA Service (Network Settings) — the socket on TCP port 64 that carries every memory write. Without it nothing works at all.
- Command Interface (Memory Configuration — a different menu, and the one people miss) — gates command dispatch even when the socket is open. Without it c64cast connects and then hangs forever.
- Web Remote Control Service (Network Settings) — the REST service carrying the operations that have no DMA equivalent: reset, launching a program or a SID, and every memory read, including the keyboard poll and the character-ROM dump. Without it pixels still paint, but nothing starts. On older Ultimate 64 and Ultimate II+ firmware it has no switch of its own and is already on.
Nothing else needs enabling by hand: c64cast turns on the REU and maps the Ultimate Audio sampler itself when a run needs them, and puts both back at teardown.
- A TeensyROM+ Multi-Capable Cartridge for C64/128 plugged into an original Commodore 64 or one of the above modern "ultimate" equivalents.
Depending on how you use it, you'll also want some of these things:
- Any C64 video output path supported by a U64/C64.
- A webcam (any cv2-compatible USB device) for live capture scenes.
- A microphone for live audio; otherwise the audio path can sit idle or play a video's soundtrack via PyAV.
- A MIDI controller if you want to use MIDI scenes, or to perform with the clip grid and live parameter knobs.
- An HDMI capture device if you want to capture output directly from a U64 or C64 equipped with a Kawari Large. Example capture devices include the Elgato Cam Link 4K or the Genki ShadowCast.
- A WLED device (or a WLED-ecosystem sender like LedFx/xLights) on the same LAN if you want to use the WLED bridge in any direction — none of this is required for the core streaming experience.
There is no software emulator path for the streaming side: c64cast writes directly to C64 memory and VIC-II registers over the wire, and SID playback runs a small player PRG in the machine's own RAM so the real 6510 calls PLAY at IRQ time. See docs/caveats.md for why, and for the PSID-only limitation that follows from it.
Contributing#
Bug reports, feature ideas, and pull requests are all welcome. See CONTRIBUTING.md for the development setup (a git checkout and uv sync --all-extras), the make check gate, and the conventions this repo follows. Security reports go through SECURITY.md rather than a public issue.
Acknowledgments#
- Gideon Zweijtzer for the Ultimate 64 hardware and firmware.
- Travis Smith for the TeensyROM+ - including cartridge, firmware, hands-on testing, and suggestions.
- Bo Zimmerman for his excellent online and physical collections of all things Commodore.
- The HVSC team for the SID archive and the Songlengths database.
- Pex 'Mahoney' Tufvesson for the 8-bit
$D418DAC technique (his "Musings in the Key of C64" white paper) behind the optionaldac_curve = "mahoney_ultisid"audio path. - Jürgen Wothke (webSID / Tiny'R'Sid) for documenting the
$D418filter-bit "almost 8-bit" playback approach behind Mahoney's technique. - Antonio Savona for the 48 kHz
$D418write-up. - CodeBase64 for the extensive reference material.
- Many open source contributors for all of the many Python packages that make this app possible. <3
License#
MIT — see LICENSE.
Third-party assets. The books are typeset in two fonts that are redistributed in this repository under the SIL Open Font License 1.1, not under MIT: Jost\ (Copyright 2020 The Jost Project Authors) and Inconsolata* (Copyright 2006 The Inconsolata Project Authors). They live in docs/shared/fonts/ alongside their license texts — see that directory's README for provenance and for what has to travel with them.
