MarketingStrategy

Net New Video Editor

Turn newly recorded talking-head footage into review-ready vertical video drafts with an explicit edit plan, deterministic FFmpeg rendering, captions, hook cards, audio normalization, and visual QA.

EEric Siu·Marketing·MIT

Library skill — the default version is maintained in GitHub; edits you make live in your own clone.

Use this skillDownload .zip
How does this work?
  • ChatGPT opens a new chat with the skill loaded. If it's too long for a link, it's copied to your clipboard — just paste.
  • Claude works the same way. To install it permanently, download the .zip and upload it under Claude → Settings → Capabilities → Skills (Pro/Team/Enterprise).
  • Copy prompt copies the skill so you can paste it into any assistant, including Grok.

Net-New Video Editor

Create a reversible first edit from fresh recordings. Keep creative decisions in JSON and pixel operations in the bundled renderer.

Preamble

Run from the repository root when the optional shared telemetry helpers are present:

python3 telemetry/version_check.py 2>/dev/null || true
python3 telemetry/telemetry_init.py 2>/dev/null || true

Remote telemetry is opt-in and never includes content, file paths, repository names, or credentials.

Establish the package

Read references/project-contract.md. Locate the exact source recordings, transcript, idea card or brief, proof assets, and screen recordings. Never substitute another recording, brand, account, or asset library.

Initialize a new project only when the destination is clear:

python3 scripts/net_new_video_editor.py init --project <project-dir>

Copy or point only user-authorized inputs into the generated package. Preserve originals.

Inspect before editing

Run:

python3 scripts/net_new_video_editor.py inspect --project <project-dir>

Review intake-report.json. Stop when the package has no playable take, the requested target does not match the supplied footage, or required external assets are missing.

Build the edit plan

Use the transcript and brief to create edit-plan-clean.json. Treat the spoken hook and claim boundaries as ground truth.

For a second version, copy the plan to edit-plan-aggressive.json and make only named retention edits. Do not silently change factual claims.

Validate each plan:

python3 scripts/net_new_video_editor.py validate --project <project-dir> --plan <plan.json>

Render deterministically

Run the renderer from this skill directory:

python3 scripts/net_new_video_editor.py render \
  --project <project-dir> \
  --plan <plan.json>

The renderer trims paired audio and video, concatenates the selected segments, creates a center-safe 9:16 frame, rasterizes captions and the hook card with Pillow, composites them with FFmpeg, normalizes audio, writes H.264/AAC MP4, and creates three QA frames plus qa-report.json.

Use --dry-run to inspect the FFmpeg command. Use --force only when replacing the exact derived export is intended.

Review the output

Inspect the exported MP4, all three QA frames, qa-report.json, and the plan diff between variants. Verify:

Return the plan, export paths, QA evidence, and any required pickups. Never publish, upload, delete originals, or overwrite an approved master without current explicit approval.

Completion states