FFmpeg Media Processing

Process video and audio files with FFmpeg for conversion, compression, resizing, trimming, audio extraction, GIF creation, and subtitle embedding.

35|6|Updated Aug 1, 2025
One-click install
npx skills add https://github.com/Quriosity-agent/qcut --skill ffmpeg-media-processing-quriosity-agent
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: FFmpeg Media Processing
Source: https://github.com/Quriosity-agent/qcut/tree/main/qcut/.claude/skills/ffmpeg-skill
Command: npx skills add https://github.com/Quriosity-agent/qcut --skill ffmpeg-media-processing-quriosity-agent

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies complex media manipulation tasks, allowing users to convert, compress, trim, resize, and extract audio from video files without needing to memorize intricate command-line syntax.

Core Features & Use Cases

  • Format Conversion: Easily change between various video and audio formats (e.g., MKV to MP4, WAV to MP3).
  • File Optimization: Compress videos to reduce file size or resize them for specific platforms.
  • Content Extraction: Extract audio tracks from videos or create GIFs from video segments.
  • Use Case: Convert a large video file into a smaller, web-friendly format, trim out unnecessary parts, and add a subtitle track, all with a single request.

Quick Start

Use the ffmpeg skill to convert the file 'my_video.mov' to 'my_video.mp4'.

Frequently Asked Questions about FFmpeg Media Processing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert MKV to MP4 without losing quality?

To convert MKV to MP4 without losing quality, you need media conversion that remuxes the video stream into the new container using FFmpeg, avoiding re-encoding while changing the format efficiently.

What is the best way to compress video files for the web?

The best way to compress video files for the web is applying file compression via FFmpeg, which reduces file size by adjusting codecs and bitrates, resulting in smaller, web-friendly outputs.

How do I extract audio from a video file?

To extract audio from a video file, you isolate the audio track using audio extraction commands in FFmpeg, discarding the video stream to output a standalone audio file like WAV or MP3.

Can I use FFmpeg to embed subtitles into a video?

Yes, you can use FFmpeg to embed subtitles into a video by mapping the subtitle track into the output container during format conversion, hardcoding or softcoding the text overlay onto the media.

Does FFmpeg support GIF creation from video segments?

Yes, FFmpeg supports GIF creation from video segments by selecting a specific trim range and applying palette filters, converting the clip into an optimized, looping animated GIF output.