Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

seedance-video-editor种子视频编辑器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

2,644

周安装

108

GitHub Stars

公开资料未说明

下载量

855
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:seedance-video-editor(种子视频编辑器)
来源仓库:https://github.com/vcarolxhberger/seedance-video-editor
安装命令:
openclaw skills install seedance-video-editor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install seedance-video-editor

简介

用于快速导出编辑后的 Seedance 生成视频。

  • 支持高达 1080p 分辨率与分钟级处理速度。
  • 使用时需发送原始素材并定义剪辑范围与转场效果。
  • 建议在非生产环境验证输出质量后再正式发布。
  • 集成智能裁剪与色彩校正提升成片观感。seedance-video-editor 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
seedance-video-editor
version
1.0.0
displayName
Seedance Video Editor — Edit and Export Clips at 1080p
description
>
metadata
{"openclaw": {"emoji": "🎬", "requires": {"env": ["NEMO_TOKEN"], "configPaths": ["~/.config/nemovideo/"]}, "primaryEnv": "NEMO_TOKEN", "variant": "greeting_v2"}}

Getting Started

Send me your raw clip and a list of cuts, and I'll return a finished 1080p MP4. No footage yet? Describe the edit you want and we'll work from there.

Try saying:

  • "Trim the first 8 seconds off my 2-minute clip and add a fade-in at the start"
  • "Cut between three segments at 0:15, 0:42, and 1:10, then export as 1080p MP4"
  • "Add a 3-second title card at the beginning and remove the last 5 seconds of dead air"

Automatic Setup

On first interaction, connect to the processing API before doing anything else. Show a brief status like "Setting things up...".

Token: If NEMO_TOKEN environment variable is already set, use it and skip to Session below.

Free token: Generate a UUID as client identifier, then POST to https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token with header X-Client-Id: <uuid>. The response field data.token becomes your NEMO_TOKEN (100 credits, 7-day expiry).

Session: POST to https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent with Bearer auth and body {"task_name":"project"}. Save session_id from the response.

Confirm to the user you're connected and ready. Don't print tokens or raw JSON.

Cut, Trim, and Export MP4 Files Fast

Send a raw clip and a plain-text edit list — something like 'cut 0:12 to 0:45, add fade-out at end, export 1080p' — and seedance-video-editor processes it into a finished MP4. The skill handles the frame-level cuts so you don't have to open a timeline editor.

A typical 90-second clip with 3 cuts and a title overlay takes roughly 40 seconds to process. That's the actual turnaround, not an estimate padded for edge cases.

You can chain multiple edits in a single request: trim start, insert a 2-second black frame at 0:30, add an end card at the final 5 seconds. The output is one continuous MP4 file, not a project file that needs rendering.

Routing Edits to Correct Actions

User prompts containing terms like 'trim', 'cut', 'merge', or 'export 1080p' are parsed against Seedance's action map to route to the correct editing pipeline.

User says...ActionSkip SSE?
"export" / "导出" / "download" / "send me the video"→ §3.5 Export
"credits" / "积分" / "balance" / "余额"→ §3.3 Credits
"status" / "状态" / "show tracks"→ §3.4 State
"upload" / "上传" / user sends file→ §3.2 Upload
Everything else (generate, edit, add BGM…)→ §3.1 SSE

Seedance Rendering Pipeline Details

When an export is triggered, Seedance offloads the render job to cloud GPU nodes, which process the 1080p output at up to 60fps using H.264 or H.265 encoding depending on the selected quality preset. Session metadata, including timeline state and clip references, is held server-side for up to 30 minutes before auto-expiry.

All requests must include: Authorization: Bearer <NEMO_TOKEN>, X-Skill-Source, X-Skill-Version, X-Skill-Platform. Missing attribution headers will cause export to fail with 402.

Three attribution headers are required on every request and must match this file's frontmatter:

HeaderValue
X-Skill-Sourceseedance-video-editor
X-Skill-Versionfrontmatter version
X-Skill-Platformauto-detect: clawhub / cursor / unknown from install path

API base: https://mega-api-prod.nemovideo.ai

Create session: POST /api/tasks/me/with-session/nemo_agent — body {"task_name":"project","language":"<lang>"} — returns task_id, session_id.

Send message (SSE): POST /run_sse — body {"app_name":"nemo_agent","user_id":"me","session_id":"<sid>","new_message":{"parts":[{"text":"<msg>"}]}} with Accept: text/event-stream. Max timeout: 15 minutes.

Upload: POST /api/upload-video/nemo_agent/me/<sid> — file: multipart -F "files=@/path", or URL: {"urls":["<url>"],"source_type":"url"}

Credits: GET /api/credits/balance/simple — returns available, frozen, total

Session state: GET /api/state/nemo_agent/me/<sid>/latest — key fields: data.state.draft, data.state.video_infos, data.state.generated_media

Export (free, no credits): POST /api/render/proxy/lambda — body {"id":"render_<ts>","sessionId":"<sid>","draft":<json>,"output":{"format":"mp4","quality":"high"}}. Poll GET /api/render/proxy/lambda/<id> every 30s until status = completed. Download URL at output.url.

Supported formats: mp4, mov, avi, webm, mkv, jpg, png, gif, webp, mp3, wav, m4a, aac.

Error Handling

CodeMeaningAction
0SuccessContinue
1001Bad/expired tokenRe-auth via anonymous-token (tokens expire after 7 days)
1002Session not foundNew session §3.0
2001No creditsAnonymous: show registration URL with ?bind=<id> (get <id> from create-session or state response when needed). Registered: "Top up credits in your account"
4001Unsupported fileShow supported formats
4002File too largeSuggest compress/trim
400Missing X-Client-IdGenerate Client-Id and retry (see §1)
402Free plan export blockedSubscription tier issue, NOT credits. "Register or upgrade your plan to unlock export."
429Rate limit (1 token/client/7 days)Retry in 30s once

Translating GUI Instructions

The backend responds as if there's a visual interface. Map its instructions to API calls:

  • "click" or "点击" → execute the action via the relevant endpoint
  • "open" or "打开" → query session state to get the data
  • "drag/drop" or "拖拽" → send the edit command through SSE
  • "preview in timeline" → show a text summary of current tracks
  • "Export" or "导出" → run the export workflow

Reading the SSE Stream

Text events go straight to the user (after GUI translation). Tool calls stay internal. Heartbeats and empty data: lines mean the backend is still working — show "⏳ Still working..." every 2 minutes.

About 30% of edit operations close the stream without any text. When that happens, poll /api/state to confirm the timeline changed, then tell the user what was updated.

Draft JSON uses short keys: t for tracks, tt for track type (0=video, 1=audio, 7=text), sg for segments, d for duration in ms, m for metadata.

Example timeline summary:

Timeline (3 tracks): 1. Video: city timelapse (0-10s) 2. BGM: Lo-fi (0-10s, 35%) 3. Title: "Urban Dreams" (0-3s)

Troubleshooting

If the exported MP4 cuts at the wrong timestamp, check whether you used seconds or MM:SS format — seedance-video-editor defaults to MM:SS, so '90' is interpreted as 1 minute 30 seconds, not 90 seconds flat. Restate timestamps explicitly if the first export is off.

Blank or black frames in the output usually mean a cut point landed on a keyframe boundary. Shift the cut 2–3 frames earlier or later and re-run the edit. This fixes the issue in over 90% of cases without a full re-upload.

Audio sync drift on clips longer than 4 minutes is a known edge case. Request a 48kHz audio lock in your edit instructions ('lock audio to 48kHz') and the drift drops to under 1 frame across the full clip length.

File size over 500MB after export? Specify a bitrate cap in your request — '8 Mbps max' keeps a 3-minute 1080p clip under 180MB without visible quality loss at normal playback sizes.

Integration Guide

Connect seedance-video-editor to your existing content pipeline by passing edit instructions as structured text through the ClawHub skill interface. No separate SDK install is needed — the skill reads plain-text commands directly from the chat input field.

If you're batching more than 5 clips, number each job ('Job 1: clip_a.mp4, cut 0:10–0:55') so the editor tracks them separately and doesn't merge instructions across files. Each job returns its own MP4, labeled by the job number you assigned.

For teams using shared asset libraries, include the clip source URL in the first line of your request. The editor fetches the file directly, so you don't need to re-upload the same source footage across 10 different edit requests — that alone cuts per-job setup time to under 15 seconds.

Tips and Tricks

Write your edit instructions in chronological order — seedance-video-editor reads them sequentially, so 'cut to 0:45, then add title' processes differently than 'add title, then cut to 0:45'. Sequence matters more than formatting.

If you're working with clips longer than 3 minutes, break the edit list into labeled segments (e.g., 'Segment A: 0:00–1:00, Segment B: 1:01–2:30'). This keeps the instruction set under 200 characters per segment and reduces parsing errors on complex timelines.

For text overlays, specify font size in pixels and duration in seconds — don't just say 'big text for a while.' Something like '48px white text, 4 seconds, centered' gives the editor enough to work with. Vague overlay instructions produce vague results.

You can request a preview frame at a specific timestamp (e.g., 'show frame at 0:32') before committing to the full export. It's a one-second check that saves a full re-render.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.47%
按下载量换算825

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills