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

video-post-production视频后期制作

Agent Skill

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

总安装

3,370

周安装

135

GitHub Stars

公开资料未说明

下载量

1,091
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install video-post-production

简介

端到端处理头部说话视频的后期制作。video-post-production 属于效率类 Skill,可作为该场景下的辅助能力补充。

  • 自动转录语音、生成定时字幕并添加关键词强调。
  • 适用于短视频、演讲回放等内容优化。
  • 支持常见视频格式输入,最大 500MB。
  • 建议校对字幕准确性后再导出最终版本。

SKILL.md

name
video-post-production
description
>

Video Post-Production

Use this skill when the user gives you one raw video and wants a finished short video with:

  • readable subtitles
  • highlighted key phrases
  • basic SFX emphasis
  • optional BGM
  • a rendered export

The default workflow is single-input automation: the user provides the video, and you handle the rest.

Inputs

Required:

  • one raw video file with spoken audio

Optional:

  • preferred subtitle color/style
  • preferred BGM mood
  • preferred SFX intensity
  • existing BGM file
  • existing SFX directory

If optional inputs are missing, proceed with defaults.

Outputs

Create a working directory next to the input video:

  • <video_name>_output/

Expected output files:

  • alignment.json
  • production_plan.json
  • subtitles.ass
  • final.mp4

Default behavior

If the user does not specify a style:

  • subtitles: bold, high-contrast, mobile-readable
  • highlights: only on high-value phrases
  • SFX: light to medium density
  • BGM: optional, low-volume, ducked under speech

Do not block on missing BGM or SFX. A valid delivery can still be:

  • subtitles only
  • subtitles + generated simple SFX
  • subtitles + BGM

Workflow

1. Check prerequisites

Confirm these are available:

  • ffmpeg
  • ffprobe
  • python3
  • faster-whisper if transcription is needed
  • a Chinese-capable font for ASS rendering

Use:

ffmpeg -version | head -1
ffprobe -version | head -1
python3 -c "from faster_whisper import WhisperModel; print('faster_whisper OK')" 2>/dev/null || echo "Need: pip3 install faster-whisper"

If faster-whisper is missing:

pip3 install faster-whisper

2. Transcribe the video

Run:

python3 <skill-path>/scripts/align_speech.py \
  --video "<input_video>" \
  --output "<workdir>/alignment.json" \
  --model "medium" \
  --language "zh"

This produces word-level timing and segment-level timing.

3. Build a post-production plan

Read alignment.json and produce production_plan.json.

The plan must contain:

  • subtitle_groups
  • sfx
  • bgm

Minimum shape:

{
  "subtitle_groups": [],
  "sfx": [],
  "bgm": {
    "mood": "inspirational",
    "tempo": "medium",
    "volume": -18
  }
}

Planning rules

Subtitle grouping:

  • group into natural spoken phrases
  • do not split a phrase awkwardly
  • prefer 3-8 Chinese characters per phrase
  • prefer 0.5s or longer readable display windows
  • keep within mobile reading comfort

Keyword highlighting:

  • highlight emotional, contrastive, numeric, warning, CTA, and payoff phrases
  • do not over-highlight
  • default target: 1-3 highlighted phrases per 10 seconds

SFX placement:

  • opening transitions
  • key claims
  • warnings
  • CTA moments
  • major topic pivots

Do not place SFX on every subtitle. Keep it sparse enough to feel intentional.

BGM choice:

  • educational / explainer -> uplifting / neutral
  • warning / risk -> tense / restrained
  • positive / benefit-driven -> hopeful / energetic

4. Generate ASS subtitles

Run:

python3 <skill-path>/scripts/generate_subtitles.py \
  --plan "<workdir>/production_plan.json" \
  --output "<workdir>/subtitles.ass" \
  --video-width 720 \
  --video-height 1280 \
  --font "Heiti SC" \
  --font-size 48

If you need deeper ASS styling guidance, read:

  • <skill-path>/references/ass_effects.md

5. Prepare audio

BGM

Preferred order:

  1. user-provided BGM
  2. existing local BGM in workspace
  3. proceed without BGM

If BGM exists, prepare it:

ffmpeg -stream_loop -1 -i "<bgm_file>" -t <video_duration> \
  -af "volume=-18dB,afade=t=in:d=2,afade=t=out:st=<duration-3>:d=3" \
  -y "<workdir>/bgm_prepared.wav"

SFX

Preferred order:

  1. user-provided SFX directory
  2. existing local SFX directory
  3. generate simple fallback tones/noise

If no SFX files are available, read:

  • <skill-path>/references/audio_resources.md

6. Render final video

Run:

python3 <skill-path>/scripts/render_video.py \
  --input "<input_video>" \
  --subtitles "<workdir>/subtitles.ass" \
  --plan "<workdir>/production_plan.json" \
  --bgm "<workdir>/bgm_prepared.wav" \
  --sfx-dir "<workdir>/sfx" \
  --output "<workdir>/final.mp4" \
  --resolution "720x1280"

If no BGM exists, omit --bgm. If no SFX directory exists, omit --sfx-dir.

Quality bar

The result should feel like a polished short-form knowledge video:

  • subtitles are easy to read on mobile
  • highlighted words are meaningful, not noisy
  • SFX emphasize real rhetorical beats
  • BGM stays below speech and never masks intelligibility
  • final export is usable without extra manual cleanup

Fallback rules

If the raw video is usable but supporting resources are missing:

  • still deliver subtitles and a rendered video
  • note what was skipped
  • do not block the whole workflow waiting for perfect assets

If transcription quality is poor:

  • keep subtitle grouping conservative
  • prefer fewer highlights
  • avoid aggressive SFX timing

Bundled resources

Scripts:

  • scripts/align_speech.py
  • scripts/generate_subtitles.py
  • scripts/render_video.py

References:

  • references/ass_effects.md
  • references/audio_resources.md

Final delivery checklist

Before finishing, ensure:

  • alignment.json exists
  • production_plan.json exists
  • subtitles.ass exists
  • final video renders successfully
  • subtitles are visible
  • speech remains clear
  • SFX and BGM are not overpowering

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.74%
按下载量换算1,077

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills