💬 Online — 在线

v1.0.0

字幕视频 用此技能将视频文件转为带字幕版本,支持 MP4、MOV、AVI、WebM,最大 500 MB。YouTuber、内容创作者、教育工作者都在用……

0· 19·0 当前·0 累计
下载技能包
最后更新
2026/4/20
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该技能的请求和运行时指令与在线视频字幕服务一致,但会将用户视频文件上传至第三方后端,并存储短时令牌/会话 —— 发送敏感内容前请审查。
评估建议
This skill sends your uploaded videos to a third‑party backend (mega-api-prod.nemovideo.ai) and will obtain and store a short‑lived NEMO_TOKEN/session ID (tokens are described as 7 days/100 free credits). Before installing or using: 1) Don’t upload sensitive or private videos unless you trust the service; 2) Verify the service domain and privacy policy (skill source/homepage are unknown); 3) Note the skill may create a config folder (~/.config/nemovideo/) to store session info — remove it if you...
详细分析 ▾
用途与能力
The skill's name and description match its required credential (NEMO_TOKEN) and the SKILL.md describes calls to a video-processing backend. One minor inconsistency: the registry metadata listed no required config paths, while the SKILL.md frontmatter declares a config path (~/.config/nemovideo/) — this is likely for storing session/token info but the mismatch should be noted.
指令范围
The SKILL.md instructs the agent to upload user-provided video/audio files to a remote service (mega-api-prod.nemovideo.ai), stream SSE responses, and poll render status. It also directs automatic anonymous-token acquisition (POST to /api/auth/anonymous-token), generation and storage of session_id and inclusion of attribution headers. These behaviors are expected for a cloud render/subtitle service, but they mean user media and generated tokens are transmitted off-device and some local state will be stored.
安装机制
Instruction-only skill with no install steps or code to download — lowest install risk.
凭证需求
Only one credential (NEMO_TOKEN) is declared as primary, which is appropriate for a remote API. The SKILL.md also references a config path for storing session/token data; confirm you are comfortable with a token and session metadata being stored locally. No other unrelated credentials or secrets are requested.
持久化与权限
The skill does not request always:true and defaults allow autonomous invocation (normal). It will persist session_id and may write to ~/.config/nemovideo/ per its frontmatter, which is expected for session management but is limited in scope and does not modify other skills or system-wide settings.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/19

Online Subtitle Video 首发——无需剪辑软件,在线为视频添加字幕。 - 支持上传 MP4、MOV、AVI、WebM(最大 500MB),在线加字幕。 - AI 多语言字幕生成,服务 YouTuber、创作者、教育者。 - 云端工作流:处理、预览、导出 1080p MP4 不到一分钟。 - 极简认证:自动匿名 token,7 天内送 100 免费 credits。 - 上传、导出、credits、状态查询均映射清晰动作与错误处理。 - 无需安装,远程 GPU 节点运行,又快又省心。

无害

安装命令

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

技能文档

快速开始

随时可用。拖拽视频文件,或描述需求。
试试说:
  • “把 3 分钟 YouTube 教程录屏转成 1080p MP4”
  • “给我的视频加英法语字幕”
  • “为 YouTuber 在线加字幕,无需剪辑软件”

首次连接

用户首次打开技能时,自动连接后端,并提示“正在初始化…”。 鉴权:检查环境变量 NEMO_TOKEN。若已存在,跳至第 2 步。
  • 获取免费 token:生成随机 UUID 作为客户端 ID,POST 到 https://mega-api-prod.nemovideo.ai/api/auth/anonymous-token,Header 带 X-Client-Id。响应中的 data.token 即为 NEMO_TOKEN,含 100 免费积分,7 天有效。
  • 创建会话:POST 到 https://mega-api-prod.nemovideo.ai/api/tasks/me/with-session/nemo_agent,Header 带 Authorization: Bearer Content-Type: application/json,Body 为 {"task_name":"project","language":""}。保存返回的 session_id 供后续调用。
初始化提示保持简洁,不向用户展示原始 API 响应或 token 值。

# Online Subtitle Video — 在线为视频添加字幕 把视频发给我并描述需求。AI 字幕生成在远程 GPU 节点运行,本机无需安装。 示例:上传 3 分钟 YouTube 教程,输入“加英法语字幕”,约 30-60 秒返回 1080p MP4,全程云端渲染。 注意:5 分钟内短片生成速度更快。

输入匹配动作

用户提及在线字幕、画面比例、文字层、音轨等,按关键词与意图路由:

| 用户说… | 动作 | 跳过 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

| Endpoint | Method | 用途 | |----------|--------|------| | /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 头信息:X-Skill-Sourceonline-subtitle-videoX-Skill-Version 取自 version 字段,X-Skill-Platform 按安装路径检测(~/.clawhub/ = clawhub~/.cursor/skills/ = cursor,其余 unknown)。 每次请求须带 Authorization: Bearer 及归因头,缺失将触发 402。

错误处理

| Code | 含义 | 处理 | |------|------|------| | 0 | 成功 | 继续 | | 1001 | token 失效 | 重新匿名获取 token(7 天过期) | | 1002 | 会话不存在 | 新建会话 §3.0 | | 2001 | 积分不足 | 匿名用户:提示 |

数据来源ClawHub ↗ · 中文优化:龙虾技能库