save_handoff_toolchain
Write the StarReel video assembly scripts to a local directory, so you can run fetch, compile, and assemble commands to produce a final mp4 from a manifest without manual setup.
Instructions
把装配工具链(fetch_pack.py / compile_timeline.py / assemble.sh)直接写到你本地的一个目录,省掉自己复制粘贴。免费。目录必须已存在且是绝对路径;文件名固定,不接受自定义。
拒绝写入隐藏目录(/.ssh、/.config、.git…)与系统目录——这是写盘不是读盘,覆盖错地方不可逆。
落盘后完整流程:
python3 fetch_pack.py manifest.json -o ./pack # 下载素材、内联字幕落成 SRT
python3 compile_timeline.py ./pack [--transitions plan.json]
./assemble.sh ./pack out.mp4 [plan.json]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dir | Yes | 已存在的绝对路径目录,如 /Users/me/work/starreel-pack |