Add video recording pipeline for release/feature videos - #251
Merged
Merged
Conversation
Add a maintainer-only pipeline that records sideshow product videos in one real-time pass: scripts/launch-video/stage.html frames the live viewer in a 1920x1080 stage (window chrome, caption lower-third, title cards) and record.mjs boots a fresh server, seeds demo content, and drives the storyboard with Playwright while recording video, ready for ffmpeg encoding to mp4/webm. Unlike hunk's keyframe compositor, sideshow's product is live motion (cards streaming in, the comment loop), so a single recorded pass is the right capture model. skills/launch-video/SKILL.md documents the recipes (full release, single feature/PR, custom), the storyboard vocabulary, and the environment gotchas learned while producing the 0.13.0 release video with it (CSP frame-ancestors stripping, overlay pointer-events, iframe settle time, ffmpeg/x264, fonts). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WHgzU15du8dEN3BJiWD3kx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a complete video production pipeline for creating sideshow release and feature videos. The pipeline records the real viewer in a 1920x1080 stage with window chrome, captions, and title cards while driving a live server with Playwright.
Changes
scripts/launch-video/stage.html— A 1920x1080 HTML stage that frames the live viewer in a browser-window iframe, with a lower-third caption area and full-screen title card overlay. Includes awindow.stageAPI for the driver to swap captions and show/hide cards. Supports optional custom fonts (Inter and JetBrains Mono) with system-font fallbacks.scripts/launch-video/record.mjs— The recording driver that:__INTER__,__MONO__,__APP_URL__,__APP_HOST__)skills/launch-video/SKILL.md— Comprehensive guide covering:.gitignore— Added.video-work/to exclude the recording workspace directoryImplementation notes
pointer-events: noneon the card overlay to ensure Playwright's hit-target checks reach the app iframe without timing out./api/eventsstream.https://claude.ai/code/session_01WHgzU15du8dEN3BJiWD3kx