Releases: renezander030/capcut-cli
Release list
v0.13.2
v0.13.1
Documentation
- Refreshed the README hero /
media/og-card.pngsocial card (EN + zh reference the same asset). Docs-only release; no code changes since 0.13.0.
v0.13.0
Six features in one release — the top of the opportunity backlog, bundled. Two build on prior art from the capcut-cli-david fork (thanks @Davidb-2107); see #36.
Added
sync-timelines <project-dir> [--apply] [--force-write]— reconcile a CapCut >= 8.7 draft whosetemplate-2.tmp/draft_info.jsontimeline mirror has drifted fromdraft_content.json, so CLI edits are honored by the app instead of silently ignored.draft_content.jsonis always canonical and is treated read-only. Accepts only a project directory or itsdraft_content.json(any other filename exits 1). Plan-only by default: the per-target drift report includes each mirror's mtime plusnewer_mirrors/canonical_stale, and warns whendraft_content.jsonis older than a drifted mirror (you would overwrite newer edits).--applyrefuses that direction unless you add--force-write(exit 1), then rewrites only the drifted mirrors — the canonical file is never re-sorted or backed up, and in-sync mirrors are left untouched;reconciled/backupslist exactly the files written. No-ops with exit 0 when all targets already agree. An unreadable (binary/encrypted) mirror is reported unreconcilable (ok:false,in_sync:false, exit 2) and stays idempotent on re-run instead of pretending success.--apply --dry-runreports the plan only (would_reconcile,reconciled: []).diagnosenow recommends the plan form (with a back-up caution) instead of deferring to issue #35. Closes #39.lint <project> --fix— auto-repair mechanically-fixable draft defects, now four codes:cue-too-long(trims over-long captions to the configured cap),caption-overlap(shortens overlapping pairs so each ends where the next begins),line-too-long(greedy word wrap that swaps spaces for newlines 1:1, keeping styled-range byte offsets valid; never splits words — instances the wrap cannot actually fix, i.e. space-less/CJK text and over-cap single words, are stampedfixable:false), andcaption-gap-too-small(pulls the earlier caption's end back to restore the minimum gap; never moves starts, never creates a new overlap). The gap repair honors a hard floor — exportedMIN_CAPTION_DURATION_US = 100_000(100ms) — so a shrink that would land a caption below the floor is skipped and stampedfixable:falsefor that instance instead of collapsing it. Writes atomically with a.baksnapshot; combine with--dry-runto preview.missing-materialandmissing-filestay report-only deliberately: the only mechanical repairs would delete user timeline content or act on host-dependent paths. Closes #40.lint— new report-only ruleunknown-effect-slug(info severity, exit 0): flags effect/filter/animation resource ids in the draft that are not in the bundled enum table, surfacing them before CapCut silently drops them (the silent-failure mode reported across ecosystem tools, e.g. GuanYixuan/pyCapCut#12). Info rather than warning because store-downloaded effects on app-authored drafts are legitimate; only CLI-written stale slugs are at risk.export-srt <project> [--granularity line|word] [--format srt|vtt]— word-level caption export. Captions created bycaption --karaokecarry real per-word timing and export it exactly; plain captions interpolate word timing proportionally by word length (stated in--help). SRT + word emits one cue per word; VTT + word emits one cue per phrase with inline<hh:mm:ss.mmm>karaoke timestamps for burn-in pipelines. Defaults (line,srt) reproduce the previous output byte-identically.keyframe ... --easing <linear|ease-in|ease-out|ease-in-out>— CapCut-native easing curves, also accepted per-line (easingkey) inkeyframe --batchJSONL and in thecompilespec's keyframe op. The app does not store named curve types: the UI writesFreeCurveInOutbezier control handles on both keyframes of the eased segment, and the emitted encodings are locked against a UI-oracle capture (prior art: capcut-cli-david). Theken-burnsskill default changed linear → ease-out to match what the CapCut UI itself produces.detect-scenes <video> [--threshold <0..1>] [--min-gap <s>] [--limit <n>] [--json]— deterministic ffmpeg scene-cut detection (no AI, zero new dependencies) to seed the long-form → shorts flow: prints detected cut points (seconds,hh:mm:ss.mmmtimecode, scene score) plus a ready-to-use contiguous segment list in seconds and draft-native microseconds. Follows theprobe/renderexternal-binary pattern, including a clear actionable error when ffmpeg is missing.make-preset <project> <text-segment-id> --out <preset.json>— extract a hand-tuned text style (font, colors, style flags, alignment/transform, bubble, karaoke/multi-style ranges) from an existing draft into a versioned, portable preset file; apply it with the new--preset <file>flag onadd-text,text-style, andcaption. Addresses the recurring ecosystem ask for programmatic font/style reuse (GuanYixuan/pyJianYingDraft#192, Hommy-master/capcut-mate#57). Contract:- Explicit flags beat the preset — including its ranges.
--color/--font-sizeoverride every capturedtext_rangesblock over the covered span, not just the base style, so a karaoke/highlight preset re-renders in the flag color/size; applying the same preset without those flags preserves the per-range styling. - Presets are schema-validated on load.
transformmust be an object with finite numericx/y,bubblemust carry non-emptyeffect_id/resource_id,text_rangesmust be an array of objects with integerstart/endwhereend > startand correctly typed style fields. A malformed preset is rejected with a clear error and is never written into the draft. - Rangeless preset onto a multi-range segment collapses the ranges. Applying a preset that carries no
text_rangesonto a segment that still holds multiple range blocks (leftover karaoke/highlight) collapses them to the single uniform preset style spanning the whole text — consistent with the "applies the full preset" contract. A preset that itself carries ranges applies them unchanged. Documented in--help. make-preset --dry-runwrites nothing — the--outfile is neither created nor overwritten, and the JSON output reportsdryRun:truewithwritten:false(a normal run reportswritten:true).
- Explicit flags beat the preset — including its ranges.
- Parser: the value-consuming flags introduced in this release (
--threshold,--min-gap,--limit,--json,--granularity,--format,--easing,--preset,--apply) are scoped to the commands that declare them instead of being consumed globally, so free-text positionals that contain a flag-like substring survive verbatim (e.g.add-text ... New Year --limit 5 drinksstores the literal text). Flags that earlier releases already parsed globally are unchanged.
Documentation
docs/version-support.md— the CapCut 8.7 row now namessync-timelinesas the repair path for drifted mirrors.docs/draft-schema/03-keyframes-and-animations.md— documents theFreeCurveInOutbezier-handle easing encoding.
v0.12.0 — quickstart, replace-media, fixture bundle
Added
quickstart <name> [--video <f>] [--audio <f>] [--srt <f>]— the one-command path from a single file to an editable draft. Creates the draft, adds the input (durations from ffprobe when available, a 5s placeholder otherwise), lints it with the same checks aslint, inspects the storage layout likediagnose, and prints the exact open-in-CapCut step. Exit 0 when created and lint-clean, 2 when created with lint errors. Reduces first-run friction for a CLI that now has 50+ commands.fixture <project> --out <dir>— build a shareable, redacted compatibility bundle. Copies only the timeline JSON (neverassets/media), redacts user home paths and email addresses, and writes a reporter README plus a diagnose report. Automates the "attach a sanitized project folder" step in the version-support flow so reporters can safely contribute the real CapCut 8.7 (issue #35) fixtures the storage adapter still needs.replace-media <project> <segment-id> <new-file> [--retime]— swap a segment's source clip in place (placeholder/proxy > final render) while preserving its timeline position, timing, effects, and keyframes. Copies the file intoassets/and refreshes intrinsic duration/dimensions via ffprobe. Distinct fromrelink, which only repairs broken paths by basename. Warns when the new clip is shorter than the segment uses;--retimefits the segment to the new clip. Honors--dry-run(no write, no copy). This is the assemble-with-placeholders-then-swap-in-finals workflow that fits the CLI's local, deterministic, agent-drivable positioning.
Documentation
docs/jianying-encryption.md— decision record for JianYing 6.0+ draft encryption: detect, do not decrypt, with the rationale (legal posture, algorithm in flux) and the tripwires that would reopen the decision.capcut decryptnow links to it.docs/version-support.md— the reporting flow and the CapCut 8.7 row now referencecapcut fixturefor one-command sanitized bundles.
capcut-cli v0.11.3
[0.11.3] — 2026-06-20
Documentation
- Synchronized the English and Chinese READMEs with the shipped v0.11 surface: version-aware storage, v0.11.2 Windows fixes, six templates, 13 enum categories, 205 tests, the full cross-platform CI matrix, and the current GitHub Action reference.
capcut-cli v0.11.2
[0.11.2] — 2026-06-20
Fixed
- Windows now resolves the bundled template and spawned
serveCLI through proper filesystem paths instead of URL pathnames, fixinginit,compile, and queued jobs on drive-letter paths. - ESM test imports use
file:URLs on Windows, and a single-filerestorepreserves the backup's exact bytes. - The full Node 20 suite now passes on Windows, macOS, and Linux in GitHub Actions.
capcut-cli v0.11.1
[0.11.1] — 2026-06-20
Fixed
- GitHub Actions on Windows now uses Node's built-in test discovery instead of relying on POSIX shell expansion of
test/*.test.mjs.
capcut-cli v0.11.0
[0.11.0] — 2026-06-20
A reliability and automation release spanning the full draft lifecycle. It closes the highest-value gaps found in the v0.10.1 repository audit while preserving the zero-runtime-dependency core.
Added
- CapCut 8.7+ draft store — version-aware discovery of
draft_content.json,draft_info.json,draft_meta_info.json, andtemplate-2.tmp, including nested/string JSON envelopes. Every readable timeline target is synchronized on write. diagnose— redacted storage report with canonical-file selection, hashes, timeline divergence, editor-process detection, and--bundle <report.json>output for compatibility reports.- Command contract v2 —
describenow exposes usage, typed positionals/options, defaults/enums, mutability, prerequisites, output form, and exit codes for every command. Help, completions, generated docs, and the typedrunCommand()library API consume the registry. compilev2 — stable item refs, source timing, speed/volume/opacity/transforms, transitions, filters, effects, keyframes, audio fades, templates, SRT captions, text styles/ranges, plus--check/--planvalidation without writes.- Caption adapters + karaoke — explicit OpenAI Whisper, whisper.cpp, and faster-whisper dialects; word-timestamp parsing/grouping;
--karaoke,--max-words,--max-chars, and--max-gap-msgenerate time-varying highlighted caption segments. - Full media probing — ffprobe duration, FPS, display rotation, dimensions, codecs, audio presence/channels, and a path+mtime cache.
add-video,add-audio, andcompilecan infer omitted durations. - Higher-fidelity proxy rendering — optional
--all-video-trackscomposition with transforms/opacity, audio fades, draft caption colour/size/position, explicit skipped-feature reports, and FFmpeg capability detection/fallbacks. - Reliable
serverunner — bounded async workers, per-project serialization, stable job-ID deduplication, retry/backoff, configurable timeout/output limits, and safe capture for outputs larger than 64 KiB. - Cross-platform CI smoke matrix — Node 20 tests on Ubuntu, macOS, and Windows in addition to the existing Node 18/20/22 Linux matrix.
Changed
- Conflict-safe atomic persistence — writes are prepared and fsynced before same-directory rename, every synchronized target receives a backup/history snapshot, changed-on-disk drafts are refused, and managed drafts are protected while CapCut/JianYing is running.
--force-writeis the explicit override. - Transactional
batch— all operations validate against cloned state and commit once. Any failure writes nothing by default;--continue-on-errorintentionally commits only successful operations and exits non-zero. doctor— now reports ffprobe and detailed FFmpeg filter/encoder capabilities alongside Whisper and project-directory checks.- Lint gate — warnings now fail
npm run lint; the existing lint debt was removed.
Fixed
- Large JianYing enum and
serveresults no longer truncate at the macOS 64 KiB synchronous pipe boundary. - Proxy-render tests no longer assume every installed FFmpeg build includes
drawtext; caption burn falls back cleanly when it is absent. - Stale roadmap, version-support, Chinese README, skill reference, test-count, and release metadata claims were synchronized with the shipped surface.
v0.10.0 — render (proxy preview) + compile (declarative drafts)
Two commands that close the two biggest gaps in a headless CapCut workflow: seeing the result of an edit, and authoring a whole draft in one shot. No breaking changes; still zero npm-dep and JSON-by-default. ffmpeg is an opt-in shell-out (only when actually rendering), the same pattern caption uses for whisper.
Preview
-
render— a low-res ffmpeg proxy preview of a draft, so you can watch an edit without opening CapCut. Flattens the main video track (per-segment source trim + speed), scales to a proxy size (--scale, default 0.5), mixes every audio-track segment, and optionally burns text in with--burn-captions. It is a preview, not CapCut's final render (no multi-track compositing/effects). The ffmpeg command is built by a pure, deterministicbuildRenderPlanthat is unit-tested without invoking ffmpeg;--dry-runprints that plan and needs no ffmpeg. Read-only.capcut render ./my-short --burn-captions # -> ./my-short/preview.mp4 capcut render ./my-short --dry-run # print the ffmpeg plan, run nothing
Build
-
compile— builds a whole draft from a declarative JSON spec (the inverse ofdescribe): instead of chaining dozens of mutatingadd-*commands, emit one spec andcompileconstructs the draft atomically via the same factory functions the imperative commands use. Times in seconds; media paths resolve relative to the spec. The full spec is validated — and every media file checked to exist — before anything is written, so a bad spec fails clean. Writes bothdraft_content.jsonanddraft_info.jsonso every downstream command reads the same data.capcut compile ./short.json --out ./my-short
12 new tests; full suite 171/171. Merged in #29.
Install: npm install -g capcut-cli@0.10.0
v0.9.0 — 10 new capabilities
Ten new commands/capabilities across inspection, maintenance, composition, and agent integration. No breaking changes; still zero-dep, JSON-by-default, pipeable.
Inspect & agents
describe— full command surface as JSON, so LLM/agent callers get a tool spec instead of scraping--help.timeline— track/segment layout in the terminal (JSON, or-HASCII bars).projects— list CapCut/JianYing draft folders on disk by name (no more UUID paths).
Maintain & compose
prune— remove unreferenced materials (unionsmaterial_id+extra_material_refs[], so indirect refs survive).relink— repair broken media paths (--dirbasename match or--from/--toprefix).diff— compare two drafts (segments + materials added/removed/changed).concat— append one draft onto another's timeline, id-collision-safe.
Safety & config
- Multi-step undo — rolling snapshot history;
restore --step N/--list. config—.capcutrcdefaults (drafts/jianying/cols);capcut configshows resolved values.- Windows
export --batch— PowerShell + SendKeys (Ctrl+E) path now ships.
Closes #17. 30 new tests; full suite 159/159.
Install: npm install -g capcut-cli@0.9.0
Full changelog: https://github.com/renezander030/capcut-cli/blob/master/CHANGELOG.md