video-editing 2.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -31
- package/dist/{chunk-SSXAUKGV.js → chunk-2OM7WV4W.js} +755 -801
- package/dist/cli.js +332 -131
- package/dist/index.d.ts +185 -138
- package/dist/index.js +43 -29
- package/package.json +2 -2
- package/skills/video-editing/SKILL.md +108 -74
- package/skills/video-editing/references/audio-joins.md +94 -0
- package/skills/video-editing/references/cli-reference.md +122 -72
package/README.md
CHANGED
|
@@ -2,28 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
The [ClipReady](https://github.com/ItayElgazar/clipready) CLI — **agents-first
|
|
4
4
|
AI video editing** for talking-head reels. An AI agent (or you) drops in a raw
|
|
5
|
-
recording; the
|
|
6
|
-
editorial brief; the agent authors a
|
|
7
|
-
overlays); the cloud compiles
|
|
5
|
+
recording; the CLI streams it to the ClipReady cloud, which transcribes and
|
|
6
|
+
screens it and sends back the editorial brief; the agent authors a
|
|
7
|
+
`timeline.json` (cuts, captions, zooms, overlays); the cloud compiles,
|
|
8
|
+
renders, and verifies it.
|
|
8
9
|
|
|
9
|
-
**The
|
|
10
|
-
|
|
10
|
+
**The CLI is a pure API client — everything executable runs in the ClipReady
|
|
11
|
+
cloud.** No ffmpeg, no ffprobe, no rendering tools on your machine.
|
|
11
12
|
|
|
12
13
|
## Requirements
|
|
13
14
|
|
|
14
15
|
- **Node ≥ 20**
|
|
15
|
-
- **ffmpeg**/**ffprobe** on your PATH (`brew install ffmpeg`)
|
|
16
16
|
- A **ClipReady API key** — get one from the ClipReady settings page
|
|
17
17
|
|
|
18
|
+
That's the whole list.
|
|
19
|
+
|
|
18
20
|
## Install & auth
|
|
19
21
|
|
|
20
22
|
```bash
|
|
21
23
|
npm install -g video-editing
|
|
22
|
-
|
|
23
|
-
export CLIPREADY_API_KEY=… # from the settings page
|
|
24
|
+
video-editing auth api-key # paste your key once — that's it
|
|
24
25
|
video-editing --help
|
|
25
26
|
```
|
|
26
27
|
|
|
28
|
+
The base URL defaults to the hosted ClipReady cloud; `CLIPREADY_API_KEY` /
|
|
29
|
+
`CLIPREADY_API_BASE` env vars (or `--api-key`/`--api-base`) override when set.
|
|
30
|
+
|
|
27
31
|
Every command requires the API key — nothing runs without it.
|
|
28
32
|
|
|
29
33
|
The companion agent skill (workflow + timeline vocabulary for AI agents):
|
|
@@ -37,34 +41,35 @@ video-editing skill install
|
|
|
37
41
|
## Workflow
|
|
38
42
|
|
|
39
43
|
```bash
|
|
40
|
-
video-editing init --
|
|
41
|
-
|
|
42
|
-
# transcripts, flags,
|
|
43
|
-
# read prompts/author-edl.md (the editorial brief), author jobs/clip/timeline.json
|
|
44
|
-
video-editing timeline compile --job-dir jobs/clip --json # cloud compile → resolved/plan.json
|
|
45
|
-
video-editing
|
|
44
|
+
video-editing init --source "clip.mp4" --job-dir jobs/clip # stream the source up + cloud ingest:
|
|
45
|
+
# probe, transcribe, screen; pulls
|
|
46
|
+
# transcripts, flags, prompts/author-edl.prompt.md
|
|
47
|
+
# read prompts/author-edl.prompt.md (the editorial brief), author jobs/clip/timeline.json
|
|
48
|
+
video-editing timeline compile --job-dir jobs/clip --json # cloud compile → resolved/plan.json + watch link
|
|
49
|
+
video-editing render --job-dir jobs/clip # cloud preview render (waits + downloads)
|
|
46
50
|
video-editing verify --job-dir jobs/clip --json # cloud content-verify of the preview
|
|
47
|
-
video-editing qa frames --
|
|
48
|
-
video-editing
|
|
51
|
+
video-editing qa frames --join 1 --job-dir jobs/clip # server-rendered QA filmstrips of join 1
|
|
52
|
+
video-editing render --mode final --job-dir jobs/clip
|
|
49
53
|
```
|
|
50
54
|
|
|
51
55
|
## Commands
|
|
52
56
|
|
|
53
|
-
| Verb | What it does |
|
|
54
|
-
| --- | --- |
|
|
55
|
-
| `init --
|
|
56
|
-
| `transcribe` |
|
|
57
|
-
| `timeline validate` | Schema/semantic check of your `timeline.json`
|
|
58
|
-
| `timeline resolve` | Phrase → exact source seconds (anchor resolution) |
|
|
59
|
-
| `timeline compile` |
|
|
60
|
-
| `
|
|
61
|
-
| `verify` |
|
|
62
|
-
| `qa frames` / `qa waveform` |
|
|
63
|
-
| `files pull` / `files push` | Sync job artifacts with the cloud job |
|
|
64
|
-
| `review pull` / `review push` | Work a ClipReady review round (live timeline updates, completion) |
|
|
65
|
-
| `cloud render` / `cloud status` |
|
|
66
|
-
| `skill install` | Install the bundled agent skill into `~/.claude/skills` |
|
|
67
|
-
| `status` | Job state + artifact existence |
|
|
57
|
+
| Verb | What it does |
|
|
58
|
+
| --- | --- |
|
|
59
|
+
| `init --source <path>` | Stream the source up (chunked, 2GB-safe), create the cloud job, run server-side ingest (probe + transcription + screening), pull transcripts/brief — covers what init+transcribe used to do |
|
|
60
|
+
| `transcribe` | Re-run/pull transcription (init already did it once) |
|
|
61
|
+
| `timeline validate` | Schema/semantic check of your `timeline.json` (local, pure) |
|
|
62
|
+
| `timeline resolve` | Phrase → exact source seconds (anchor resolution) |
|
|
63
|
+
| `timeline compile` | Cloud-compile `timeline.json` → `resolved/plan.json` + diagnostics; prints the watch link |
|
|
64
|
+
| `render` | Cloud render of the compiled plan (preview by default, waits + downloads; `--mode final` for delivery) |
|
|
65
|
+
| `verify` | Fully server-side content-verify of the rendered preview (retakes left in, dead air) |
|
|
66
|
+
| `qa frames` / `qa waveform` | Server-rendered filmstrip / waveform PNG + word-timing sidecar; address by source time, plan join (`--join <i>`), or output time (`--out-start/--out-end`) |
|
|
67
|
+
| `files pull` / `files push` | Sync job artifacts with the cloud job |
|
|
68
|
+
| `review pull` / `review push` | Work a ClipReady review round (live timeline updates, completion) |
|
|
69
|
+
| `cloud render` / `cloud status` | Same render API, legacy spelling + status polling |
|
|
70
|
+
| `skill install` | Install the bundled agent skill into `~/.claude/skills` |
|
|
71
|
+
| `status` | Job state + artifact existence |
|
|
72
|
+
| `config` | Store the API key/base in `~/.config/video-editing/.env` |
|
|
68
73
|
|
|
69
74
|
Run `video-editing <cmd> --help` for flags.
|
|
70
75
|
|