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

roblox-clip-transformerroblox 夹式变压器

Agent Skill

roblox-clip-transformer 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,352

周安装

127

GitHub Stars

公开资料未说明

下载量

824
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install roblox-clip-transformer

简介

roblox-clip-transformer 将原始游戏片段自动剪辑为短视频推广素材。

  • 适合游戏创作者适配 TikTok、YouTube Shorts 等平台格式。
  • 智能裁剪画面比例并保留高光时刻提升传播效果。
  • 安装命令:openclaw skills install roblox-clip-transformer,依赖视频处理库。
  • 输出版权归属原作品方,商用前请确认授权许可。

SKILL.md

name
roblox-clip-transformer
version
1.0.0
description
Transform raw Roblox gameplay footage into platform-ready promotional content (TikTok, YouTube Shorts, Reels). Auto-edit with smart trimming, aspect ratio conversion, music sync, captions, and brand overlays. Use when creating game trailers, promotional clips, or social media content from Roblox recordings. Ideal for game developers, content creators, and marketing teams.

Roblox Clip Transformer

Transform raw Roblox gameplay into polished, platform-ready promotional clips in minutes.

What This Skill Does

Takes raw Roblox screen recordings and produces edited vertical/horizontal videos optimized for TikTok, YouTube Shorts, and Instagram Reels.

Core Capabilities:

  • Aspect ratio conversion (16:9 → 9:16)
  • Smart action detection and trimming
  • Beat-synced transitions
  • Auto-generated captions
  • Brand overlay support

Quick Start

# Basic usage - horizontal to vertical
roblox-transform input.mp4 --output output.mp4 --platform tiktok

# With captions
roblox-transform input.mp4 --output output.mp4 --platform shorts --captions

# Full trailer mode
roblox-transform input.mp4 --output output.mp4 --platform tiktok --trailer --title "My Game" --cta "Play Now!"

Workflow

1. Analyze Footage

The skill automatically detects:

  • Action moments (movement, transitions, key events)
  • Dead time (menus, loading screens)
  • Audio peaks (for caption timing)
python scripts/analyze-footage.py input.mp4 --output analysis.json

2. Configure Platform

Each platform has specific requirements:

PlatformAspect RatioDurationFPS
TikTok9:1615-60s30
YouTube Shorts9:16<60s30
Instagram Reels9:1615-90s30
YouTube Horizontal16:9Any30

See references/platform-specs.md for full details.

3. Generate Output

python scripts/platform-render.py input.mp4 \
  --analysis analysis.json \
  --platform tiktok \
  --output final.mp4

Features

Smart Trimming

Automatically removes:

  • Menu screens
  • Loading screens
  • AFK/idle moments
  • Repetitive sequences

Aspect Ratio Conversion

Converts horizontal gameplay to vertical while:

  • Centering key action
  • Adding blurred background fill
  • Preserving important elements

Music Sync

Beat-synchronized transitions using:

  • Royalty-free tracks in assets/music/
  • Custom audio with --music path/to/track.mp3

Auto Captions

Generates timed subtitles:

  • Extracts audio with Whisper
  • Syncs to video timeline
  • Styles for readability
python scripts/caption-sync.py input.mp4 --output captions.srt

Brand Overlays

Add:

  • Game logo (PNG with transparency)
  • Watermark
  • Call-to-action text
  • Title cards

Scripts Reference

ScriptPurpose
analyze-footage.pyDetect action moments, remove dead time
platform-render.pyFFmpeg wrapper for platform-specific output
caption-sync.pyWhisper-based caption generation
music-sync.pyBeat detection and transition timing

Requirements

System Dependencies:

  • FFmpeg (for video processing)
  • Python 3.10+
  • Whisper (for captions, optional)

Python Packages:

  • ffmpeg-python
  • librosa (for beat detection)
  • openai-whisper (for captions)

Install with:

pip install ffmpeg-python librosa openai-whisper

Examples

Example 1: Basic Vertical Clip

roblox-transform gameplay.mp4 --output tiktok.mp4 --platform tiktok

Example 2: Vertical with Captions

roblox-transform gameplay.mp4 --output shorts.mp4 --platform shorts --captions --language en

Example 3: Game Trailer Mode

roblox-transform gameplay.mp4 \
  --output trailer.mp4 \
  --platform tiktok \
  --trailer \
  --title "Escape the Castle" \
  --logo assets/logo.png \
  --cta "Play Now!"

Example 4: Multi-Platform Export

# Generate for all platforms
roblox-transform gameplay.mp4 --output-dir ./exports --platform all

Output Structure

exports/
├── tiktok_916_30fps.mp4
├── shorts_916_30fps.mp4
├── reels_916_30fps.mp4
└── youtube_169_30fps.mp4

Limitations

  • Best results with gameplay 30+ seconds
  • Caption accuracy depends on audio clarity
  • Beat sync works best with music-heavy sections

Troubleshooting

"FFmpeg not found"

  • Install FFmpeg: apt install ffmpeg or brew install ffmpeg

"Whisper failed"

  • Captions optional - skip with --no-captions
  • Or install: pip install openai-whisper

"Output too long"

  • Use --max-duration 60 to limit length
  • Smart trim will prioritize best moments

Next Steps

  1. Place raw gameplay in your working directory
  2. Run basic transformation: roblox-transform input.mp4 -o output.mp4 -p tiktok
  3. Review output and adjust settings
  4. Add brand elements for polished trailer

For advanced usage, see references/brand-templates.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.91%
按下载量换算691

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills