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 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 ClipReady cloud transcribes and screens it and sends back the
6
- editorial brief; the agent authors a `timeline.json` (cuts, captions, zooms,
7
- overlays); the cloud compiles and verifies it; your machine renders it.
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 editorial engine runs in ClipReady cloud; rendering and QA visuals run
10
- locally on your machine.**
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
- export CLIPREADY_API_BASE=https://… # the ClipReady API base
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 --video "clip.mp4" --job-dir jobs/clip # upload source, create the cloud job
41
- video-editing transcribe --job-dir jobs/clip # cloud transcribes + screens; pulls
42
- # transcripts, flags, and prompts/author-edl.md
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 compose --job-dir jobs/clip --render # local preview render (hyperframes)
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 --range 0-5 --job-dir jobs/clip # local QA filmstrip
48
- video-editing cloud render --job-dir jobs/clip --mode final --wait
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 | Runs |
54
- | --- | --- | --- |
55
- | `init --video <path>` | Upload the source, create the cloud job (`job.json` with `video_id`) | cloud |
56
- | `transcribe` | Cloud transcription + screening; pulls transcripts, screening artifacts, and the editorial `prompts/*.md` | cloud |
57
- | `timeline validate` | Schema/semantic check of your `timeline.json` | local |
58
- | `timeline resolve` | Phrase → exact source seconds (anchor resolution) | local |
59
- | `timeline compile` | Compile `timeline.json` → `resolved/plan.json` + diagnostics | cloud |
60
- | `compose` | Build (and optionally render) the local HyperFrames composition | local |
61
- | `verify` | Content-verify the rendered preview (retakes left in, dead air) | cloud |
62
- | `qa frames` / `qa waveform` | Filmstrip / waveform PNG + word-timing sidecar for any window | local (ffmpeg) |
63
- | `files pull` / `files push` | Sync job artifacts with the cloud job | cloud |
64
- | `review pull` / `review push` | Work a ClipReady review round (live timeline updates, completion) | cloud |
65
- | `cloud render` / `cloud status` | Server-side preview/final render + status | cloud |
66
- | `skill install` | Install the bundled agent skill into `~/.claude/skills` | local |
67
- | `status` | Job state + artifact existence | both |
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