If Crayotter helps your research or demos, please consider giving the repo a Star on GitHub.
Crayotter is a multimodal, agent-driven video editing system that turns a single text request into a complete edited video. It combines planning, deep editing research, and tool-based execution into a three-phase workflow, with full logs and visual trace analysis for debugging and iteration.
Watch the demo video on GitHub
A full end-to-end run: from a one-line text request, Crayotter prepares materials, researches an editing blueprint, and produces the final edited video.
- 2026.6.27 — Crayotter 1.0.0 adds multi-source material import, unified download cleanup, and refreshed Windows release packaging.
- 2026.6.15 — Asynchronous scheduling upgrade accelerated the overall video generation workflow by ~1.6×.
- 2026.5.31 — Our paper is now available: Crayotter: Traceable Multi-Agent Workflows for Long-Form Video Editing.
- 2026.5.23 — 100 Stars achieved!
- 2026.5.11 — The paper page is now live at Crayotter Paper Page.
- 2026.4.10 — The release has been updated.
- 2026.3.30 — First release version available. See v0.1.0-demo.
- One request to one video — A single natural-language prompt drives the whole pipeline from sourcing to export.
- Three-phase, traceable workflow — Explicit planning, pure-reasoning editing research, and controlled tool execution, all logged for replay.
- Multimodal material understanding — Each source video is analyzed by a multimodal model to inform narrative and pacing.
- Resource-aware DAG scheduling — Bounded concurrency for search, download, analysis, LLM, FFmpeg, TTS, and export, with retries, conflict keys, and checkpoint/resume.
- Multi-source material import — Bilibili, Douyin, Xiaohongshu/Rednote, Kuaishou, YouTube, or generic URLs (via
yt-dlp). - Built-in narration, subtitles, and audio mixing — Segmented TTS, loudness normalization, background-ducking, and subtitle burn-in.
- Local workbench + desktop mode — Web UI for task management,
.env-synced config, structured logs, artifact preview, and interrupted-job resume. - Visual trace analysis — Local server + static HTML export for inspecting phase progress and tool-call trajectories.
This repository centers around four core components:
script/agent.py— Main entrypoint. Initializes runtime, runs tasks (interactive or single request), performs workspace cleanup, and writes logs/experience memory.script/graph.py— Orchestration layer (LangGraphStateGraph). Defines the three-phase workflow and routing.script/tools/— Modular toolset for search, download, analysis, cutting, transitions, narration, subtitles, and export.script/visualize.py— Log parser + local trace server for inspecting phase progress and tool calls.
Supporting folders:
temp/— Intermediate and output artifacts during execution.user_temp/— User-provided local source assets.logs/— Runtime logs (video_agent_*.log).memory_experience/— Concise historical-case notes kept for reference only; they must not override the current task goal.website/— Static launch site and GitHub Pages assets.
Crayotter uses a three-phase architecture:
START -> planner -> phase1_scheduler -> material_gap_evaluator
material_gap_evaluator -> planner (supplement) | editing_research | react_editor
editing_research -> react_editor -> END
-
Phase 1 — Material Preparation (Planner + Executor)
- Planner emits an explicit dependency DAG.
- A deterministic scheduler validates dependencies, resource pools, retries, and write conflicts.
- Search, per-video download, and per-video analysis tasks execute concurrently when resources are available.
- A Material Gap Evaluator decides whether to proceed or run an incremental sourcing round (at most two supplement rounds, reusing already-successful tasks).
- Search candidate videos through the platform-agnostic material-source layer.
- Import user-provided URLs from Bilibili, Douyin, Xiaohongshu/Rednote, Kuaishou, YouTube, or generic URLs when supported by
yt-dlp. - Rank/select high-quality candidates (target orientation is a scoring factor: landscape by default, portrait when requested).
- Download selected videos and standardize them into editing-compatible MP4/H.264/AAC assets.
- Analyze each source video multimodally.
-
Phase 2 — Editing Research
- Research source analyses concurrently.
- Build narrative, visual, pacing, and narration strategies concurrently.
- Integrate them into one structured editing blueprint (JSON + compatibility Markdown).
- No editing tools are called in this phase — it is pure reasoning.
This phase can be disabled with
CRAYOTTER_ENABLE_PHASE2_RESEARCH=falsein the runtime.envto save tokens. When disabled, the workflow becomes: Phase 1 → Phase 3. -
Phase 3 — ReAct Editing Execution
- Prefer a controlled editing DAG with parallel clip cutting and segmented TTS.
- Keep timeline merge, mixing, subtitles, quality evaluation, and export serial.
- Fall back to the existing ReAct editor when structured planning or validation fails.
- Log full tool-call trajectory for later trace visualization.
Windows 10/11 x64 users can download Crayotter-Windows-x64.zip from the release page:
- Extract the complete archive.
- Double-click
Crayotter.exe. - Enter the API key and model settings in the workbench.
The release includes Python, FFmpeg, and yt-dlp, so users do not need to install Python. It opens in a native desktop window when Microsoft Edge WebView2 is available and falls back to the default browser otherwise.
Runtime data is stored next to the executable when that directory is writable, or under %LOCALAPPDATA%\Crayotter otherwise. The release never includes .env, API keys, uploaded media, logs, or generated videos.
To build the Windows x64 release with Python 3.12:
powershell -ExecutionPolicy Bypass -File packaging\build_windows.ps1The build produces:
dist/Crayotter/Crayotter-Windows-x64.zip
Ensure ffmpeg is reachable from your PATH so it can be called directly in a terminal. Download it from https://ffmpeg.org/download.html and verify with ffmpeg -version. On Windows, the bundled binaries under script/dep/windows (ffmpeg.exe, ffprobe.cmd, yt-dlp.exe) are also prepended to PATH automatically.
Use Python 3.10+.
python -m venv .venv
.venv\Scripts\activatepip install -r requirements.txtCopy .env.example to .env, then edit the values there:
copy .env.example .envCommon options:
CRAYOTTER_API_KEY=your-key
CRAYOTTER_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
CRAYOTTER_MODEL_NAME=qwen-plus
CRAYOTTER_VIDEO_MODEL_NAME=qwen-vl-max-latest
CRAYOTTER_TTS_MODEL_NAME=qwen-tts-latest
CRAYOTTER_ENABLE_PHASE2_RESEARCH=true
CRAYOTTER_ENABLE_PLAN_REVIEW=true
CRAYOTTER_DIRECT_PHASE3_EXECUTION=false
CRAYOTTER_PREFER_LOCAL_MATERIALS=false
CRAYOTTER_SEARCH_POOL_SIZE=4
CRAYOTTER_DOWNLOAD_POOL_SIZE=2
CRAYOTTER_VIDEO_ANALYSIS_POOL_SIZE=2
CRAYOTTER_LLM_POOL_SIZE=2
CRAYOTTER_FFMPEG_POOL_SIZE=2
CRAYOTTER_TTS_POOL_SIZE=2
CRAYOTTER_EXPORT_POOL_SIZE=1
CRAYOTTER_STANDARDIZE_TARGET_FPS=30
CRAYOTTER_AUDIO_LOUDNORM_TARGET=0
CRAYOTTER_AGENT_STALL_TIMEOUT_SECONDS=150Notes:
CRAYOTTER_DIRECT_PHASE3_EXECUTION=trueskips material search/download and goes straight into the existing-material analysis + Phase 3 execution path.CRAYOTTER_ENABLE_PLAN_REVIEW=truegenerates a visual EditingPlan before editing and waits for user approval or natural-language revisions before Phase 3.CRAYOTTER_PREFER_LOCAL_MATERIALS=trueanalyzes local materials first and only searches online when the current materials are not enough.- Resource-pool variables bound search, download, video analysis, LLM, FFmpeg, TTS, and final export work.
- Material downloads are routed through
download_material_video; Bilibili remains the default keyword-search source, while supported third-party URLs can be imported and cleaned through the same pipeline. CRAYOTTER_STANDARDIZE_TARGET_FPScontrols download cleanup frame rate.CRAYOTTER_AUDIO_LOUDNORM_TARGET=0disables loudness normalization; set a negative LUFS value such as-16to enable two-pass EBU R128 loudnorm.CRAYOTTER_AGENT_STALL_TIMEOUT_SECONDScontrols the “no new progress” watchdog threshold for running jobs.- The workbench UI writes API settings, Phase 2, direct Phase 3, local-first mode, and timeout changes back to the same
.env. - Candidate ranking treats target orientation as a scoring factor: landscape by default, portrait when the user explicitly asks for it. Merge/export use scale-to-cover plus centered crop instead of direct stretching.
- For videos under
user_temp, Crayotter writes the matching*_analysis.jsonback intouser_temp, reuses it on later runs, and removes the paired JSON when that upload is deleted from the workbench. memory_experience/latest_skills.mdis automatically compacted into bounded, reference-only case notes so it does not grow indefinitely or redefine future task goals.
Security note: never commit real API keys to version control.
Interactive mode:
python script\agent.pySingle task mode:
python script\agent.py "Create a 1-minute campus-themed promo video"Desktop mode starts the backend and opens the standalone window:
python script\run_desktop.pyAlternatively, start only the local backend service:
python script\run_backend.py --host 127.0.0.1 --port 8765Then open the local workbench in your browser:
http://127.0.0.1:8765/ui/
The GUI uses the runtime-root
.envas the only configuration source of truth. Do not commit real.envvalues.
Launch trace UI using the latest log:
python script\visualize.pyUse a specific log:
python script\visualize.py logs\video_agent_20260321_045836.logCustom port:
python script\visualize.py --port 8080script\visualize.py also exports a static trace HTML file next to the input log (e.g., *_trace.html).
If you find Crayotter useful for your research or work, please cite:
@misc{yan2026crayottertraceablemultiagentworkflows,
title={Crayotter: Traceable Multi-Agent Workflows for Long-Form Video Editing},
author={Lecheng Yan and Yichong Zhang and Ben Pan and Xiaoyu Zheng and Jiawei Qian and Anqi Wu and Wenxi Li and Chenyang Lyu},
year={2026},
eprint={2606.07636},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2606.07636},
}Crayotter/
├─ script/
│ ├─ agent.py
│ ├─ graph.py
│ ├─ visualize.py
│ └─ tools/
├─ app/ # backend server, frontend, runtime paths
├─ packaging/ # Windows release build scripts
├─ phase3_rl/ # experimental RL smoke pipeline (not the main runtime)
├─ demo/ # showcase media
├─ logs/
├─ temp/
├─ user_temp/
├─ memory_experience/
├─ website/ # static site + GitHub Pages assets
├─ logo.png
├─ crayottor_framework.jpg
└─ requirements.txt

