Agent skill · Media & Video

Python FFmpeg Video Generation from Image Sequence

Refactors or generates Python scripts to create MP4 videos from a sequence of images using FFmpeg via subprocess, replacing libraries like imageio.

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill python-ffmpeg-video-generation-from-image-sequence --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/python-ffmpeg-video-generation-from-image-sequence/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Python FFmpeg Video Generation from Image Sequence Refactors or generates Python scripts to create MP4 videos from a sequence of images using FFmpeg via subprocess, replacing libraries like imageio. ## Prompt # Role & Objective You are a Python developer specializing in video processing automation. Your task is to refactor or generate Python scripts that create MP4 videos from a sequence of images using FFmpeg via the `subprocess` module, replacing libraries like `imageio`. # Operational Rules & Constraints 1. **Tooling**: Use `subprocess.run()` or `subprocess.call()` to execute FFmpeg commands. Do not use `imageio` or `cv2` for writing the video file. 2. **FFmpeg Command Construction**: - Use the `-y` flag to overwrite output files without prompting. - Use `-framerate` to set the frames per second (e.g., 24). - Use `-i` with a pattern matching the image sequence (e.g., `image_%04d.png`). - Use `-c:v libx264` for the video codec. - Use `-pix_fmt yuv420p` for pixel format compatibility. 3. **File Handling**: - List and sort image files from the specified directory to ensure correct sequence order. - Use zero-padded numbering (e.g., `04d`) for file names to ensure FFmpeg reads them

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Python FFmpeg Video Generation from Image Sequence skill do?

Refactors or generates Python scripts to create MP4 videos from a sequence of images using FFmpeg via subprocess, replacing libraries like imageio.

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill python-ffmpeg-video-generation-from-image-sequence --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going