🎬 AI Video Pro Online - 在线视频剪辑

v1.0.0

Video Pro Online 无需拖动任何滑块,即可获得可直接发布的精致 MP4 视频。上传原始素材(MP4、MOV、AVI、WebM,最大 500MB),然后说点什么……

0· 16·0 当前·0 累计
下载技能包
最后更新
2026/4/19
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该技能的声明用途(远程 AI 视频编辑)与其运行时指令及所需凭证(NEMO_TOKEN)一致;存在少量元数据不一致,但无恶意迹象。
评估建议
This skill appears to do what it says: it uploads your video to a third‑party cloud service (mega-api-prod.nemovideo.ai) for editing and returns a download URL. Before installing/using it: (1) confirm you are comfortable uploading your footage to that external domain and review any privacy/retention claims from the service; (2) be aware the skill uses a bearer token (NEMO_TOKEN) and will auto-request an anonymous token if none is present — anonymous tokens may have limited credits/expiry; (3) no...
详细分析 ▾
用途与能力
The skill is an instruction-only connector to a cloud video-editing backend (mega-api-prod.nemovideo.ai) and only requests a single bearer token (NEMO_TOKEN) which is appropriate for that purpose. Minor inconsistency: the SKILL.md frontmatter lists a configPaths entry (~/.config/nemovideo/) while the registry metadata shows no required config paths; this is an implementation/metadata mismatch but does not change the core capability.
指令范围
SKILL.md instructions are focused on creating a session, uploading user-supplied media, sending edits via SSE, polling render status, and returning a download URL. It explicitly instructs not to leak tokens or raw API responses. It also instructs reading the skill's frontmatter and install path to populate attribution headers — that requires reading skill files/install path but is reasonable and scoped to attribution.
安装机制
There is no install spec and no code files (instruction-only). That is the lowest-risk model; nothing is downloaded or written to disk by an install step.
凭证需求
Only a single credential (NEMO_TOKEN) is required, which fits a backend API. One minor contradiction: the manifest marks NEMO_TOKEN as required, yet runtime instructions include logic to obtain a short-lived anonymous token from /api/auth/anonymous-token if NEMO_TOKEN is absent. This is plausible design (allow anonymous usage) but is a behavioral mismatch between declared requirements and runtime behavior that users should be aware of.
持久化与权限
always is false and the skill does not request persistent/privileged platform presence. It does instruct creating and using short-lived session tokens for render jobs; that is expected for a cloud rendering service.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/19

AI Video Pro Online 1.0.0 — 首次发布 - 在线即时剪辑并导出专业级视频,无需桌面软件。 - 上传原始素材(最大 500MB;支持 MP4、MOV、AVI、WebM 等),用自然语言下达剪辑指令,输出 1080p MP4。 - 连接安全云后端,服务器 GPU 高速渲染。 - 自动 token 与会话管理,零配置上手。 - 支持查看剩余点数、项目状态及直接上传视频。 - 专为需要快速产出精品的创作者与营销人设计。

无害

安装命令

点击复制
官方npx clawhub@latest install ai-video-pro-online
镜像加速npx clawhub@latest install ai-video-pro-online --registry https://cn.longxiaskill.com

技能文档

快速开始

把原始素材发给我,立刻开始 AI 剪辑。或直接说出你的想法。
试试说:
  • “帮我剪原始素材”
  • “导出 1080p MP4”
  • “剪掉停顿,加背景音乐”

一键初始化

本技能连接云端渲染后端。首次使用自动完成配置并提示“连接中…”。 Token 检查:先查找环境变量 NEMO_TOKEN。若存在,直接进入会话;否则:
  • 生成 UUID 作为客户端 ID
  • POST https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token,带 X-Client-Id
  • 取响应 data.token 即为 NEMO_TOKEN(100 免费积分,7 天有效期)

会话:POST https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent,Bearer 鉴权,body {"task_name":"project"}。保存返回的 session_id 用于后续操作。配置完成后提示“就绪!”。勿暴露 token 或原始 API 输出。

# AI Video Pro Online — 专业视频剪辑与导出 把原始素材和想要的效果发给我即可。AI 剪辑在远程 GPU 节点运行,本机零安装。示例:上传 2 分钟未剪辑录屏,输入“剪掉停顿、加背景音乐、导出 1080p”,约 1–2 分钟拿到 1080p MP4。渲染全程云端完成;60 秒以内短片处理更快。

意图映射

用户提及 ai video pro online、比例、文字层、音轨等关键词时,按以下规则路由:

| 用户说法 | 动作 | 跳过 SSE? | |----------|------|------------| | “export” / “导出” / “download” / “发我视频” | → §3.5 导出 | ✅ | | “credits” / “积分” / “balance” / “余额” | → §3.3 积分 | ✅ | | “status” / “状态” / “show tracks” | → §3.4 状态 | ✅ | | “upload” / “上传” / 用户发文件 | → §3.2 上传 | ✅ | | 其余(生成、剪辑、加 BGM…) | → §3.1 SSE | ❌ |

云端渲染流程

每次导出任务在 GPU 节点排队,合成视频层并采用平台级压缩(H.264,最高 1080×1920),30–90 秒内返回下载链接。会话 token 携带任务 ID,提前关闭标签页会导致任务孤立。

Base URL: https://mega-api-prod.nemovideo.ai

| 接口 | 方法 | 用途 | |------|------|------| | /api/tasks/me/with-session/nemo_agent | POST | 新建编辑会话。Body: {"task_name":"project","language":""},返回 session_id。 | | /run_sse | POST | 发送用户消息。Body 含 app_namesession_idnew_message。流式响应 Accept: text/event-stream,超时 15 分钟。 | | /api/upload-video/nemo_agent/me/ | POST | 上传文件(multipart)或 URL。 | | /api/credits/balance/simple | GET | 查询剩余积分(availablefrozentotal)。 | | /api/state/nemo_agent/me//latest | GET | 获取当前时间线状态(draftvideo_infosgenerated_media)。 | | /api/render/proxy/lambda | POST | 开始导出。Body: {"id":"render_","sessionId":"","draft":,"output":{"format":"mp4","quality":"high"}},每 30 秒轮询状态。 |

支持格式:mp4、mov、avi、webm、mkv、jpg、png、gif、webp、mp3、wav、m4a、aac。

技能归因——运行时读取 YAML frontmatter:

  • X-Skill-Source: ai-video-pro-online
  • X-Skill-Version: 取 frontmatter version
  • X-Skill-Platform: 按安装路径检测(~/.clawhub/clawhub~/.cursor/skills/cursor,其余 unknown

所有 API 调用须带 Authorization: Bearer 及上述三归因头,缺失返回 402。

错误码

  • 0 — 成功,继续
  • 1001 — token 过期或无效;重新获取 /api/auth/anonymous-token
  • 1002 — 会话不存在;新建会话
  • 2001 — 积分不足;匿名用户获注册链接 ?bind=,注册用户直接充值
  • 4001 — 不支持的文件类型;提示支持格式
  • 4002 — 文件过大;建议压缩或裁剪
数据来源ClawHub ↗ · 中文优化:龙虾技能库