โ† All skills
Tencent SkillHub ยท Other

cutmv Video Tool

Perform video/audio cutting, format conversion, compression, frame/audio extraction, watermarking, and subtitle addition using FFmpeg.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Perform video/audio cutting, format conversion, compression, frame/audio extraction, watermarking, and subtitle addition using FFmpeg.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README-CN.md, README.md, SKILL.md, skill.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

Skill Name

cutmv-video-tool

Description

A video processing skill for OpenClaw that leverages FFmpeg to perform video/audio cutting, format conversion, and compression. Perfect for handling video files for messaging apps with file size limits.

Capabilities

Video Cutting: Split video/audio by time range Format Conversion: Convert between video/audio formats (mp4, avi, mp3, wav, etc.) Video Compression: Compress videos with adjustable bitrate Frame Extraction: Extract frames from videos at specified intervals Audio Extraction: Extract audio track from video Audio Replacement: Replace or mix audio in video Text Watermark: Add text overlay on video (requires freetype) Subtitle: Add .srt/.ass subtitle files to video

Use Cases

Compress videos to send via WeChat/Lark/Telegram (16MB limit) Extract screenshots from videos for analysis Convert video formats for different platforms Cut specific segments from long videos

System Requirements

FFmpeg installed and available in PATH Python 3.7+

Python Dependencies

None (uses subprocess to call ffmpeg)

Installation

Ensure FFmpeg is installed on your system: macOS: brew install ffmpeg Ubuntu: sudo apt install ffmpeg Windows: Download from ffmpeg.org or winget install ffmpeg Place the skill files in your workspace: ~/openclaw-workspace/skills/cutmv-video-tool/ โ”œโ”€โ”€ SKILL.md โ”œโ”€โ”€ skill.py โ”œโ”€โ”€ README.md โ””โ”€โ”€ README-CN.md

Python API

from skill import VideoTool tool = VideoTool() # Compress video for messaging tool.compress("input.mp4", "output.mp4", bitrate="1000k") # Cut video segment tool.cut("input.mp4", "clip.mp4", start_time=30, end_time=90) # Convert format tool.convert("input.mp4", "output.avi", "avi") # Extract frames every 10 seconds tool.extract_frames("input.mp4", "./frames/", interval=10)

CLI Usage

# Compress video python skill.py compress input.mp4 output.mp4 1000k # Cut video python skill.py cut input.mp4 clip.mp4 0 60 # Convert format python skill.py convert input.mp4 output.mp3 mp3

Configuration

No additional configuration required. The skill uses system FFmpeg installation.

Testing

Run the built-in tests: python skill.py test

License

MIT License

Author

Isaac (@QiaoTuCodes)

Acknowledgments

OpenClaw team for the platform FFmpeg team for media processing tools Author Identity: yanyan@3c3d77679723a2fe95d3faf9d2c2e5a65559acbc97fef1ef37783514a80ae453

Category context

Long-tail utilities that do not fit the current primary taxonomy cleanly.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • README-CN.md Docs
  • README.md Docs
  • skill.py Scripts