Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Edit Trim Merge Convert Video

ASecurity

Video editing operations for cutting, merging, converting, and processing video files.

19 stars
0 votes
0 copies
1 views
Added 9/19/2026
ai-agentsgobash

Works with

cli

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill edit-trim-merge-convert-video --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Edit Trim Merge Convert Video?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Edit Trim Merge Convert Video
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-edit-trim-merge-convert-video/badge)](https://www.skillsdirectory.com/skills/rondoflow-edit-trim-merge-convert-video)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: edit-trim-merge-convert-video
description: "Video editing operations for cutting, merging, converting, and processing video files."
category: "Media"
author: community
version: "1.0.0"
icon: image
---

# Video Editor (ffmpeg)

Video editing operations for cutting, merging, converting, and processing video files.

## Prerequisites

Requires `ffmpeg` and `ffprobe` installed:

```bash
brew install ffmpeg
```

## Quick Start

### Cut/Trim Video

Extract a segment from a video:

```bash
{baseDir}/scripts/cut.sh /path/to/input.mp4 --start 00:00:10 --end 00:00:30 --out /path/to/output.mp4
```

Or use duration instead of end time:

```bash
{baseDir}/scripts/cut.sh /path/to/input.mp4 --start 00:01:00 --duration 30 --out /path/to/output.mp4
```

### Merge Videos

Concatenate multiple videos (must have same codec/resolution):

```bash
{baseDir}/scripts/merge.sh video1.mp4 video2.mp4 video3.mp4 --out merged.mp4
```

### Convert Format

Convert between video formats:

```bash
{baseDir}/scripts/convert.sh input.mov --format mp4 --out output.mp4
```

### Extract Audio

Extract audio track from video:

```bash
{baseDir}/scripts/extract-audio.sh input.mp4 --out audio.mp3
```

### Add Subtitles

Burn subtitles into video:

```bash
{baseDir}/scripts/add-subtitles.sh input.mp4 subtitles.srt --out output.mp4
```

### Resize Video

Change video resolution:

```bash
{baseDir}/scripts/resize.sh input.mp4 --width 1920 --height 1080 --out output.mp4
```

Or scale proportionally:

```bash
{baseDir}/scripts/resize.sh input.mp4 --scale 720 --out output.mp4
```

### Adjust Speed

Speed up or slow down video:

```bash
{baseDir}/scripts/speed.sh input.mp4 --rate 2.0 --out output.mp4   # 2x faster
{baseDir}/scripts/speed.sh input.mp4 --rate 0.5 --out output.mp4   # 0.5x slower
```

### Crop Video

Crop to specific region:

```bash
{baseDir}/scripts/crop.sh input.mp4 --x 100 --y 100 --width 800 --height 600 --out output.mp4
```

## Common Workflows

### Social Media Clip

Cut a segment and resize for Instagram/TikTok:

```bash
# First cut the segment
{baseDir}/scripts/cut.sh input.mp4 --start 00:00:15 --duration 15 --out clip.mp4

# Then resize to vertical format
{baseDir}/scripts/resize.sh clip.mp4 --width 1080 --height 1920 --out tiktok.mp4
```

### Extract Highlights

Cut multiple segments and merge:

```bash
{baseDir}/scripts/cut.sh input.mp4 --start 00:00:10 --duration 5 --out highlight1.mp4
{baseDir}/scripts/cut.sh input.mp4 --start 00:01:30 --duration 5 --out highlight2.mp4
{baseDir}/scripts/merge.sh highlight1.mp4 highlight2.mp4 --out highlights.mp4
```

### Add Background Music

Replace or mix audio:

```bash
# Replace audio
ffmpeg -i video.mp4 -i music.mp3 -c:v copy -map 0:v:0 -map 1:a:0 -shortest output.mp4

# Mix audio (video audio at 70%, music at 30%)
ffmpeg -i video.mp4 -i music.mp3 -filter_complex "[0:a]volume=0.7[a0];[1:a]volume=0.3[a1];[a0][a1]amix=inputs=2:duration=first" -c:v copy -shortest output.mp4
```

## Tips

- **Quality**: Use `-crf 18` for high quality, `-crf 28` for smaller files (default is 23)
- **Presets**: Use `-preset slow` for better compression, `-preset fast` for quicker encoding
- **Hardware acceleration**: On Apple Silicon, add `-c:v h264_videotoolbox` for faster encoding
- **Copy mode**: Use `-c copy` to avoid re-encoding (much faster, but limited editing)

## Troubleshooting

### Merge fails with "Codec mismatch"

Videos must have the same codec, resolution, and frame rate. Re-encode them first:

```bash
ffmpeg -i input1.mp4 -c:v libx264 -c:a aac -vf "scale=1920:1080" -r 30 temp1.mp4
ffmpeg -i input2.mp4 -c:v libx264 -c:a aac -vf "scale=1920:1080" -r 30 temp2.mp4
{baseDir}/scripts/merge.sh temp1.mp4 temp2.mp4 --out merged.mp4
```

### Subtitles not showing

Ensure subtitle file format matches extension (.srt, .ass, .vtt). Check encoding:

```bash
file -I subtitles.srt  # Should show charset=utf-8
```

Convert if needed:

```bash
iconv -f GBK -t UTF-8 subtitles.srt > subtitles_utf8.srt
```

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →