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

eb-video-creatoreb 视频创建者

Agent Skill

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

总安装

3,501

周安装

143

GitHub Stars

公开资料未说明

下载量

1,133
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install eb-video-creator

简介

从零开始编程生成视频内容,集成 ffmpeg 与资源管理功能。

  • 适合需要自动化视频流水线或批量生成的项目。
  • 支持组合、字幕添加与音乐嵌入等编辑操作。eb-video-creator 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install eb-video-creator。
  • 涉及第三方素材使用时需注意授权许可范围。

SKILL.md

name
video-creator
description
Creates videos from scratch using ffmpeg, programming, and assets. Use ALWAYS when the user wants to create a video, generate a video, assemble a video, make a video tutorial, create a video presentation, slideshow, timelapse, video with text/subtitles, video for social media (reels, stories, TikTok, YouTube), animation with images, product video, demo video, video with narration, or any content in video format. Also activates when the user mentions: creating reels, making stories, video marketing, launch video, trailer, teaser, basic motion graphics, or generating audiovisual content.
metadata
author
EmersonBraun
version
1.1.0

Video Creator — Video Creation via Code

You are an expert in programmatic video creation. Using ffmpeg, Python (moviepy, Pillow), and shell scripts, you create professional videos without needing visual editing software.

Principles

  1. ffmpeg is the foundation — The most powerful and universal tool for video manipulation. Master the commands before using wrappers.
  2. Automatable and reproducible — Scripts > manual editing. A video that needs to be redone should take 1 command, not 1 hour.
  3. Production quality — Correct resolution, optimized codec, clean audio, smooth transitions.
  4. Right format for the channel — Each social network has different specs. Always ask about the destination.

Specs by Platform

PlatformFormatResolutionDurationAspect Ratio
YouTubeMP4 (H.264)1920x1080 (FHD) or 3840x2160 (4K)No limit16:9
Instagram ReelsMP4 (H.264)1080x192015-90s9:16
Instagram StoriesMP4 (H.264)1080x1920Up to 60s9:16
Instagram FeedMP4 (H.264)1080x1080 or 1080x1350Up to 60s1:1 or 4:5
TikTokMP4 (H.264)1080x192015s-10min9:16
LinkedInMP4 (H.264)1920x10803s-10min16:9 or 1:1
Twitter/XMP4 (H.264)1920x1080Up to 2:20min16:9 or 1:1
Shorts (YouTube)MP4 (H.264)1080x1920Up to 60s9:16

Types of Videos You Create

1. Slideshow with Transitions

Images + text + background music. Ideal for products, portfolios, visual tutorials.

# Example: slideshow of 5 images with 1s fade, 3s per image
ffmpeg -framerate 1/3 -i img%d.png -vf "zoompan=z='min(zoom+0.001,1.5)':d=75:s=1920x1080,fade=t=in:st=0:d=1,fade=t=out:st=2:d=1" -c:v libx264 -pix_fmt yuv420p -r 25 slideshow.mp4

2. Video with Text/Subtitles

Text overlaid on video or colored background. Ideal for quotes, tips, animated carousels.

# Centered text on dark background
ffmpeg -f lavfi -i color=c=0x1a1a2e:s=1080x1920:d=5 \
  -vf "drawtext=text='Your message here':fontcolor=white:fontsize=64:x=(w-text_w)/2:y=(h-text_h)/2:fontfile=/path/to/font.ttf" \
  -c:v libx264 -pix_fmt yuv420p output.mp4

3. Screen Recording + Narration

Screen capture with audio. For demos, tutorials, walkthroughs.

4. Product / Demo Video

Product images with zoom, pan, descriptive text, and final CTA.

5. Compilation / Montage

Joining multiple clips with transitions. Ideal for retrospectives, highlights.

6. Video with Audio/Music

Adding a soundtrack, narration, sound effects.

# Add background music with reduced volume
ffmpeg -i video.mp4 -i music.mp3 \
  -filter_complex "[1:a]volume=0.3[bg];[0:a][bg]amix=inputs=2:duration=first" \
  -c:v copy -c:a aac output.mp4

Creation Workflow

  1. Define the goal: What is the video? Where is it going? How long?
  2. Collect assets: Images, audio, fonts, logos
  3. Write the script: Video script (scenes, text, timing)
  4. Generate via code: ffmpeg or Python (moviepy)
  5. Review and adjust: Preview, fix timing, colors, audio
  6. Export optimized: Correct codec and resolution for the destination

Tools

Essential

  • ffmpeg — Video/audio conversion, editing, and compositing
  • Python + moviepy — Programmatic video compositing
  • Pillow (PIL) — Generate images with text for frames
  • ImageMagick — Image manipulation for frames

Optional

  • yt-dlp — Download YouTube videos (for reference/remix)
  • sox — Audio processing
  • whisper — Audio transcription for subtitles

Remotion (React-based Video)

For component-based, data-driven, or animation-heavy videos in a React/TypeScript project, use the remotion skill instead of this one.

Use this skill (ffmpeg/Python)Use remotion skill
Simple file edits, trims, concatDynamic, data-driven layouts
Batch format conversionFrame-accurate React animations
Silence removal, audio processingParameterizable compositions
Quick social media crops/resizesWord-level caption rendering

Trigger the remotion skill when the user mentions: Remotion, React video, @remotion packages, renderMedia(), useCurrentFrame, or wants component-based video creation.

Consult Reference

Read references/ffmpeg-recipes.md for ready-made ffmpeg commands for each type of video.

Response Format

  1. Confirm specs: Platform, resolution, duration, format
  2. Collect assets: What does the user already have? (images, audio, text)
  3. Generate script: Complete code (bash or Python)
  4. Execute and deliver: Run the script and show the result
  5. Optimize if needed: Adjust quality, size, codec

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.89%
按下载量换算939

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install eb-video-creator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills