一键导入
lightflow-video-render-edit
Use this skill when rendering, testing, or modifying the lightflow.video_render_edit workflow and its ffmpeg-backed demo renderer.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill when rendering, testing, or modifying the lightflow.video_render_edit workflow and its ffmpeg-backed demo renderer.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | LightFlow Video Render Edit |
| description | Use this skill when rendering, testing, or modifying the lightflow.video_render_edit workflow and its ffmpeg-backed demo renderer. |
| version | 0.1.0 |
Use lightflow.video_render_edit to represent the render step for an automated
video edit plan. The workflow records the source-controlled contract. The
current executable renderer is scripts/render_edit.py, which reads the same
edit_plan JSON and writes an MP4 with ffmpeg.
lightflow.video_render_editedit_plan: JSON edit decision plan.output_path: destination MP4 path.video: rendered video artifact metadata.video_path: rendered MP4 path.render_summary: readable render summary.lfw run lightflow.video_render_edit \
--input edit_plan='@examples/demo/edit_plan.json' \
--input output_path='"examples/output/auto-edit-demo.mp4"'
curl -sS -X POST http://127.0.0.1:5174/workflows/lightflow.video_render_edit/run \
-H 'content-type: application/json' \
-d '{"inputs":{"edit_plan":{"timeline":[{"clip_id":"intro","path":"examples/demo/clips/intro.mp4","start":0,"end":2.5,"title":"Hook"}]},"output_path":"examples/output/auto-edit-demo.mp4"}}'
From the repository root:
python3 scripts/render_edit.py \
--plan examples/demo/edit_plan.json \
--output examples/output/auto-edit-demo.mp4
Update this skill whenever the edit plan schema, render command, inputs, outputs, or runtime behavior changes.