APP v1.0.1

video-post

Demo recording post-production: speed up boring parts with overlay captions, voiceover, and wiki publish

video-post
๐Ÿ’ฌ Sample prompts Paste any of these into Claude Code to use this app
Speed up a recording speed up the boring parts of this recording with caption overlays
Storyboard review open a per-clip storyboard review for this manifest
Add voiceover narrate over the sped-up demo via Hydrogen mic capture
Publish to wiki publish the final narrated video to apps/whatever I demoed
โšก Open this app

Paste this into Claude Code (VS Code panel, Adom editor, or terminal) to install:

Open the Adom Wiki page for the "video-post" app at https://wiki-ufypy5dpx93o.adom.cloud/wiki/apps/video-post and tell me how to use it.

Download v1.0.1

โŠž Windows coming soon
macOS coming soon
๐Ÿง Linux coming soon
๐Ÿณ Adom Docker CLI ยท

See all releases on GitHub

video-post

Post-process screen recordings for the Adom platform. Take a raw silent recording, speed up the boring parts with overlay captions, narrate over it in a Hydrogen webview, and publish the final narrated video to the wiki page for whatever you demoed.

The problem

Demo recordings have long stretches of dead air. A 12-step Fusion 360 demo runs 30+ minutes of wall-clock time, but only ~5 minutes of it is actually visually interesting. The other 25 minutes are file exports, cloud searches, and AI tool call latency while the viewer stares at unchanged screens.

Manual editing is slow and breaks the "Claude Code drives the workflow end to end" model. The right fix is explicit markers dropped during the demo, then a post-process pass that speeds up the marked sections with a clear visual indicator.

The pipeline

Four commands, under 10 minutes wall-clock for a 30-minute raw recording:

  1. Record (silent, no voiceover)
  2. video-post process โ€” speed up the boring parts with "20x SPEEDUP" overlay captions
  3. video-post voiceover โ€” open a webview with the sped-up video, narrate over it, Hydrogen captures the mic, ffmpeg muxes
  4. video-post publish --page apps/adom-desktop โ€” upload to the wiki page for the artifact you demoed

The AI drops markers as it runs slow commands during the demo:

video-post mark init
# ... record, run demo, wrap slow sections with video-post wrap ...
video-post wrap --speed 20 --label "Exporting gerbers" -- adom-desktop fusion_export_gerbers

Then post-process:

video-post process --input demo.webm   # โ†’ demo-fast.webm
video-post voiceover --input demo-fast.webm   # โ†’ demo-fast-narrated.webm
video-post publish --input demo-fast-narrated.webm --page apps/adom-desktop \
  --caption "Fusion 360 deep dive: BQ25792 manufacturing pipeline"

Features

  • Phase 1 โ€” Speedup post-processor. Drop speedup_start/end markers around slow sections. Post-processor builds a single ffmpeg filter_complex that trims, accelerates (2xโ€“100x), overlays drawtext captions, and concatenates. Auto-scales caption font to video width. Audio dropped (phase 1 expects silent recordings).
  • Phase 2 โ€” Voiceover web server. Mini Hydrogen webview app with a video player, 3-2-1 countdown, record button, discard/redo, and finalize. Uses Hydrogen's first-class adom-cli hydrogen audio API โ€” no iframe getUserMedia gymnastics. Muxes the captured audio with the video via ffmpeg copy+libopus.
  • Phase 3 โ€” Wiki publish. Wraps adom-wiki asset upload so the final narrated video gets attached to the wiki page for whatever artifact you demoed (apps, skills, molecules, libraries, datasheets).

Built following the app-creator conventions: Adom brand palette, Familjen Grotesk + Satoshi fonts, custom SVG favicon, proxy URL for the webview, graceful shutdown.

Install

gh release download v0.1.0 --repo adom-inc/video-post --pattern video-post -D /usr/local/bin
chmod +x /usr/local/bin/video-post
video-post install
video-post health

Prerequisites:

  • ffmpeg + ffprobe (sudo apt-get install ffmpeg)
  • adom-cli and adom-wiki (core Adom infra)

Repository

adom-inc/video-post

Status

  • Phase 1 (speedup): shipped in v0.1.0
  • Phase 2 (voiceover): shipped in v0.1.0
  • Phase 3 (publish): shipped in v0.1.0
VIDE
video-post 23 days ago
video-post Linux x86_64 binary v1.0.1 โ€” post-production for demo recordings (storyboard review, voiceover, concat, publish).
binary v1.0.1John Lauer ยท 23 days ago
1.8 MB

Install notes

Adom Docker CLI install steps
curl -fsSL https://wiki-ufypy5dpx93o.adom.cloud/static/apps/video-post/video-post -o /usr/local/bin/video-post && chmod +x /usr/local/bin/video-post && video-post install

Sub-Skills
?
What are Sub-Skills?

Sub-skills are community-contributed AI skill extensions for this component. They teach AI assistants about specific tools, configurators, or workflows.

Examples:

  • A manufacturer’s configuration tool for a motor controller
  • A community-written design guide for an amplifier circuit
  • An automated test/validation script for a sensor module

How to add one: Click Add Sub-Skill, provide the URL to your skill and a brief description. Submissions are reviewed by the Adom team before going live.

No sub-skills yet. Be the first to contribute one!

๐Ÿ”Ž How Claude finds this page (discovery snippet)

This page opts into Adom Wiki auto-discovery. When a user working in Claude Code mentions any of the trigger phrases below, Claude can proactively suggest this page. The pitch is exactly what Claude will say.

Pitch
"video-post handles post-production for demo recordings: per-clip speedups with caption overlays, TTS voiceover, storyboard review in Hydrogen, concat, and wiki publish. Paired with demo-recording for the author-side flow; consults tts-pronunciation for narration phonetics."
Triggers
"speed up demo recording", "speed up video", "timelapse video", "fast forward boring parts", "compress slow parts of video", "video post-production", "voiceover after recording", "narrate a recording", "demo post-process", "post-process demo", "publish demo video to wiki", "storyboard review", "video-post"

Recent activity

4 commits