📦 Video Trim Hd — 云端视频剪切

v1.0.0

通过自然语言描述即可实现视频剪切,无需专业编辑软件。支持剪切视频开头和结尾片段,快速导出高清MP4/MOV/AVI/WebM格式视频。

0· 22·0 当前·0 累计
linmillsd7 头像by @linmillsd7·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/15
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
该技能声明的用途(云端视频剪切)与其大部分行为一致,但在所需配置/凭证方面存在一些不一致,以及一些运行时文件/系统检查,在安装前需要谨慎对待。
评估建议
该技能似乎做到了它所说的(将视频上传到NemoVideo云API并返回剪切后的文件),但在安装前请注意以下警告: - 凭证行为:注册表将NEMO_TOKEN列为必需,但如果不存在NEMO_TOKEN,指令将向外部API请求匿名令牌。决定您是希望技能代表您获取短期匿名凭证,还是提供您自己信任账户的NEMO_TOKEN。 - 文件访问:技能将读取您要求上传的视频文件;它还会探测某些路径以设置归因头(例如~/.clawhub/、~/.cursor/skills/)。确认技能只会读取用户指定的文件,而不会扫描任意目录或敏感文件。 - 外部端点:所有网络活动都发送到https://mega-api-prod.nemovideo.ai。只有在该域名/服务及其隐私/安全实践值得信任时才继续。除非您拥有账户并了解保留/处理政策,否则避免上传敏感或私人视频。 - 元数据不匹配:SKILL.md frontmatter和注册表元数据在配置路径和NEMO_TOKEN的必要性上存在分歧。要求发布者澄清NEMO_TOKEN是否必需、~/.config/nemovideo/路径的用途,以及技能是否记录或传输额外上...
详细分析 ▾
用途与能力
该技能声称调用NemoVideo云API进行视频剪切,需要NEMO_TOKEN凭证——这对于云视频服务是合适的。然而,运行时指令实现了匿名令牌回退(POST到/api/auth/anonymous-token),所以NEMO_TOKEN并非严格必需;注册表元数据声明没有配置路径,而SKILL.md frontmatter宣传~/.config/nemovideo/作为配置路径。这些不匹配未解释,但可能是良性的(可选令牌vs.首选账户令牌)。
指令范围
指令专注于上传视频文件、创建会话、流式传输SSE事件和轮询渲染状态——都与视频剪切一致。它们需要访问用户视频文件路径进行多部分上传,并描述检测安装路径(~/.clawhub/、~/.cursor/skills/)以设置X-Skill-Platform头,这意味着读取某些文件系统位置。这种文件系统探测对于功能并非严格必要,应该披露/限制以避免意外读取。
安装机制
没有安装规范或代码文件;这是一个纯指令技能,因此安装程序不会向磁盘写入任何内容。这最大限度地降低了安装时风险。
凭证需求
只声明了一个凭证(NEMO_TOKEN)作为主要凭证,这与使用远程服务一致。但如果NEMO_TOKEN缺失,SKILL.md本身会获取匿名令牌,因此在注册表中要求环境变量是不一致的。没有请求无关的密钥。
持久化与权限
该技能未标记为always:true,不请求系统级更改。允许自主调用(默认),但不与广泛的凭证或持久化要求结合使用。
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/15

Video Trim HD 首次发布——轻松实现基于云端的高清视频剪切。 - 即时剪切和导出高达500MB的高清MP4、MOV、AVI或WebM视频。 - 简单、自然的指令,如"剪切前30秒和后2分钟"——无需编辑经验。 - 快速云处理:每个片段在20-40秒内获得1080p高光。 - 处理基本视频、音频和文字叠加;支持批量上传。 - 无缝入门,自动云会话和新用户免费积分。

无害

安装命令

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

技能文档


name: Video Trim HD description: Skip the learning curve of professional editing software. Describe what you want — trim the first 30 seconds and cut the last 2 minutes to keep only the highlights. vendor: NemoVideo homepage: https://nemovideo.ai id: video-trim-hd tags: - video - trim - hd - cloud - editing

Trim videos with natural language commands. Powered by NemoVideo cloud API.

Getting Started

1. Get Your API Token

Sign up at NemoVideo.ai to get your free credits and API token.

2. Configure Your Environment

export NEMO_TOKEN="your-api-token-here"

Or place it in ~/.config/nemovideo/config:

mkdir -p ~/.config/nemovideo
echo "NEMO_TOKEN=your-api-token-here" > ~/.config/nemovideo/config

3. Trim Your Video

Simply describe what you want to do:

  • "Trim the first 30 seconds"
  • "Cut the last 2 minutes"
  • "Keep only the middle 5 minutes"
  • "Remove the intro and outro"

Supported Formats

  • MP4
  • MOV
  • AVI
  • WebM

Max file size: 500MB

Features

  • Natural Language Trimming: Describe what you want in plain English
  • HD Output: Get 1080p highlights in 20-40 seconds per clip
  • Batch Processing: Upload multiple videos at once
  • Free Credits: New users get complimentary credits to start

API Reference

Endpoints

  • POST /api/v1/sessions - Create a new trimming session
  • GET /api/v1/sessions/{id}/status - Check render status
  • GET /api/v1/sessions/{id}/download - Download trimmed video

Authentication

Pass your NEMO_TOKEN in the Authorization header:

Authorization: Bearer 

If no token is provided, the skill will automatically request an anonymous token from the API.

Troubleshooting

Video Upload Fails

  • Check file format is supported (MP4, MOV, AVI, WebM)
  • Ensure file size is under 500MB
  • Verify your API token has sufficient credits

Trim Not Accurate

  • Provide more specific time ranges
  • Use natural language like "trim the first X seconds" or "cut the last X minutes"

Privacy

All video processing happens in the cloud. Videos are automatically deleted after processing. For more details, see our Privacy Policy.

Support

  • Email: support@nemovideo.ai
  • Website: https://nemovideo.ai/support
数据来源ClawHub ↗ · 中文优化:龙虾技能库