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

openclaw-video-editorOpenClaw video editor 视频

Agent Skill

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

总安装

12,455

周安装

535

GitHub Stars

1

下载量

4,366
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install openclaw-video-editor

简介

Pro-Studio v4.0.0。 AI 驱动的背景去除、智能字幕放置和电影 LUT 预设。高端视频内容的终极制作套件。

SKILL.md

name
openclaw-video-editor
description
Local ffmpeg-based video editing skill. Provides tested helpers for subtitles, background blur, color grading, two-pass loudness normalization, scene-detected highlight reels, watermarking, and format conversion. Honest scope: no AI segmentation, no transcription model, no external network calls.
license
MIT
metadata
{"openclaw":{"requires":{"bins":["ffmpeg","ffprobe","python3"]},"primaryEnv":null,"homepage":"https://clawhub.ai/gopendrasharma89-tech/openclaw-video-editor"}}

openclaw-video-editor

v4.2.0

A small, honest video editing skill for OpenClaw built on ffmpeg, ffprobe, and python3. It runs entirely on the local machine. No external services, no AI segmentation, no transcription model.

Scope

This skill provides:

  • scripts/check_deps.sh — verify ffmpeg, ffprobe, python3 are installed before any workflow runs.
  • scripts/generate_srt.py — convert Whisper / Deepgram / AssemblyAI / generic word-timing JSON into .srt, .vtt, or .ass. Bug-fixed: chunk text no longer leaks across segment boundaries.
  • scripts/highlight_reel.py — detect scene changes via ffmpeg and assemble a short highlight reel.
  • scripts/apply_lut.py — apply a real .cube 3D LUT (lut3d), or use a named filter preset (warm, cool, bw, high-contrast, faded).
  • scripts/loudnorm_two_pass.py — automate the two-pass loudnorm workflow end-to-end (NEW in v4.2.0).
  • scripts/make_vertical.py — letterbox or center-crop a horizontal video into a 9:16 vertical with optional blurred-background fill (NEW in v4.2.0).

This skill does not perform:

  • AI background removal or subject segmentation
  • Voice cloning or generative video
  • Transcription (it only formats word timings into subtitle files; pair with a separate STT tool)
  • Any remote API calls

Required binaries

bash scripts/check_deps.sh

Returns non-zero if ffmpeg, ffprobe, or python3 is missing.

Workflows

1. Generate subtitles from a transcript

python3 scripts/generate_srt.py transcript.json subtitles.srt
python3 scripts/generate_srt.py transcript.json subtitles.vtt
python3 scripts/generate_srt.py transcript.json subtitles.ass --font Helvetica --fontsize 28

Tunable: --max-chars, --max-words, --max-duration for non-English language tuning.

2. Burn subtitles into a video

ffmpeg -i input.mp4 \
  -vf "subtitles=subtitles.srt:force_style='Alignment=2,MarginV=30,Outline=2,Shadow=1'" \
  -c:a copy output.mp4

Alignment=2 is bottom-center. Use Alignment=8 for top-center.

3. Background blur (privacy filter, not subject segmentation)

True shallow-depth-of-field requires AI segmentation, which this skill does not include. The filter below is a full-frame blur:

ffmpeg -i input.mp4 -vf "boxblur=20:1" -c:a copy blurred.mp4

If you already have a binary alpha matte (mask.mp4, subject white, background black, frame-aligned), you can composite a blurred background behind the original subject:

ffmpeg -i input.mp4 -i mask.mp4 \
  -filter_complex "[0:v]boxblur=20:1[bg];[0:v][1:v]alphamerge[fg];[bg][fg]overlay=format=auto" \
  -c:a copy composited.mp4

Producing the matte itself is out of scope.

4. Color grading

Filter presets (no LUT file required):

python3 scripts/apply_lut.py input.mp4 - graded.mp4 --preset warm
python3 scripts/apply_lut.py input.mp4 - graded.mp4 --preset bw

Real .cube LUT:

python3 scripts/apply_lut.py input.mp4 lut.cube graded.mp4 --strength 0.8

5. Audio normalization (one command, NEW in v4.2.0)

Previously the SKILL.md only described the two-pass loudnorm flow without automating it. v4.2.0 ships a runner that does both passes:

# Broadcast (-23 LUFS, EBU R128)
python3 scripts/loudnorm_two_pass.py input.mp4 normalized.mp4

# Streaming platforms (-14 LUFS)
python3 scripts/loudnorm_two_pass.py input.mp4 normalized.mp4 --target-lufs -14

The script runs Pass 1, parses the JSON measurement block from ffmpeg's stderr, and runs Pass 2 with the measured offsets applied. Video is copied without re-encoding.

6. Highlight reel via scene detection

python3 scripts/highlight_reel.py input.mp4 highlight.mp4 --duration 30 --threshold 0.4

7. Watermarking

# Bottom-right text watermark
ffmpeg -i input.mp4 \
  -vf "drawtext=text='@yourhandle':x=w-tw-20:y=h-th-20:fontsize=24:fontcolor=white@0.7:box=1:boxcolor=black@0.4:boxborderw=8" \
  -c:a copy watermarked.mp4

# Image overlay (logo)
ffmpeg -i input.mp4 -i logo.png \
  -filter_complex "[0:v][1:v]overlay=W-w-20:20" \
  -c:a copy watermarked.mp4

8. Make vertical 9:16 for shorts (NEW in v4.2.0)

make_vertical.py offers three modes:

# Letterbox: original aspect inside a black 1080x1920 frame
python3 scripts/make_vertical.py input.mp4 vertical.mp4 --mode letterbox

# Crop: center-crop to 9:16
python3 scripts/make_vertical.py input.mp4 vertical.mp4 --mode crop

# Blur-fill: original centered, blurred copy of itself fills the bars
python3 scripts/make_vertical.py input.mp4 vertical.mp4 --mode blur-fill

blur-fill is the most popular look for repurposing horizontal content as shorts.

9. Format conversions

# 1080p H.264 with reasonable quality
ffmpeg -i input.mp4 -vf "scale=-2:1080" \
  -c:v libx264 -preset medium -crf 20 \
  -c:a aac -b:a 160k output_1080p.mp4

Safety properties

  • All workflows run locally. No remote API calls.
  • Python helpers use subprocess.run with argument lists (never shell=True), and reject paths with shell metacharacters via a strict regex allowlist.
  • The skill never modifies system configuration, environment variables, or other plugins.
  • The skill only reads input files and writes output files at the paths the user provides.

Known limitations

  • Inputs must be valid video/audio files reachable on the local filesystem.
  • The blur compositing path requires a pre-existing per-frame alpha matte. Producing the matte is out of scope.
  • make_vertical.py --mode blur-fill does a full re-encode; the other modes also re-encode the video stream. Audio is copied where possible.

v4.2.0 changes

  • Description on the registry now matches the actual workflows. The previous "Pro-Studio AI background removal" copy contradicted the SKILL.md and triggered a registry mismatch warning even after the SKILL.md was rewritten in v4.1.0. v4.2.0 republishes the consistent description so the public listing and SKILL.md agree.
  • scripts/loudnorm_two_pass.py automates the previously-manual broadcast loudness flow.
  • scripts/make_vertical.py adds three vertical-conversion modes for shorts (letterbox, crop, blur-fill).
  • Existing scripts (generate_srt.py, highlight_reel.py, apply_lut.py, check_deps.sh) are unchanged from v4.1.0; their bug fixes carry over.

License

MIT. See LICENSE.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.48%
按下载量换算3,776

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills