Edit footage, structure videos, add AI enhancements, and polish final cuts.
The material indicates this is essentially an open-source prompt/workflow skill for video editing, with no required secrets and no declared remote endpoints, so overall risk appears low. It references local media processing, file operations, and possible third-party services, but based on the provided facts this aligns more with normal tool capabilities; the main caution is around data and dependency boundaries during actual use.
The material and install metadata state that no secrets or environment variables are required. Although the README mentions external services such as ElevenLabs and fal.ai, it does not indicate that this skill itself requires credentials, so there is no clear credential collection, storage, or abuse risk from the provided facts.
No remote endpoints are declared in the metadata, but the README references ElevenLabs, fal.ai, and use of Claude/Codex for transcription and structuring, which implies that audio/video or transcript data may be sent to third-party services in real use. There is no evidence of unknown exfiltration endpoints, but users should verify when data leaves the local environment.
The README explicitly includes FFmpeg commands and shell script examples for splitting, concatenating, transcoding, and batch-processing video, indicating that this workflow can execute local command-line programs. This is a normal capability for a video editing skill, and there is no sign of unusual system privilege requests or hidden execution.
This skill is centered on editing existing footage, so it naturally needs to read source video, audio, transcripts, and intermediate files, and write outputs such as clips, proxies, and assembled media. The material does not show unrelated data access beyond the video-editing use case, and no excessive authorization is indicated.
The source is an open-source GitHub repository with very high community adoption (about 210k stars), which are strong positive trust signals. The license and maintenance status are not explicit and should still be checked, but based on the provided facts there are no major red flags such as closed-source behavior, obvious abandonment, or suspicious distribution.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "video-editing" skill from askskill: 1. Download https://raw.githubusercontent.com/affaan-m/ECC/main/skills/video-editing/SKILL.md 2. Save it as ~/.claude/skills/video-editing/SKILL.md 3. Reload skills and tell me it's ready
Based on my travel footage, help me plan a 3-minute vlog editing workflow: select highlights, organize them on a timeline, add transitions, subtitles, background music, and narration suggestions, and explain which steps are best done with FFmpeg, Remotion, ElevenLabs, Descript, or CapCut.
A clear vlog editing plan with shot structure, tool allocation, and polishing suggestions.
I want to turn product demo footage into a 60-second promo video. Help me design the shot sequence, pacing, caption copy, and AI voiceover plan, and provide the full workflow from raw footage processing to final export.
A promo-ready short video production plan with pacing, captions, and export workflow.
Help me optimize the post-production workflow for an interview video: remove pauses and mistakes, reorder sections, generate subtitles, clean up audio, suggest B-roll, and recommend a suitable AI tool stack.
A refined interview video plan covering editing, subtitles, audio cleanup, and content enhancement.
AI-assisted editing for real footage. Not generation from prompts. Editing existing video fast.
AI video editing is useful when you stop asking it to create the whole video and start using it to compress, structure, and augment real footage. The value is not generation. The value is compression.
Screen Studio / raw footage
→ Claude / Codex
→ FFmpeg
→ Remotion
→ ElevenLabs / fal.ai
→ Descript or CapCut
Each layer has a specific job. Do not skip layers. Do not try to make one tool do everything.
Collect the source material:
videodb skill)Output: raw files ready for organization.
Use Claude Code or Codex to:
Example prompt:
"Here's the transcript of a 4-hour recording. Identify the 8 strongest segments
for a 24-minute vlog. Give me FFmpeg cut commands for each segment."
This layer is about structure, not final creative taste.
FFmpeg handles the boring but critical work: splitting, trimming, concatenating, and preprocessing.
ffmpeg -i raw.mp4 -ss 00:12:30 -to 00:15:45 -c copy segment_01.mp4
#!/bin/bash
# cuts.txt: start,end,label
while IFS=, read -r start end label; do
ffmpeg -i raw.mp4 -ss "$start" -to "$end" -c copy "segments/${label}.mp4"
done < cuts.txt
# Create file list
for f in segments/*.mp4; do echo "file '$f'"; done > concat.txt
ffmpeg -f concat -safe 0 -i concat.txt -c copy assembled.mp4
ffmpeg -i raw.mp4 -vf "scale=960:-2" -c:v libx264 -preset ultrafast -crf 28 proxy.mp4
ffmpeg -i raw.mp4 -vn -acodec pcm_s16le -ar 16000 audio.wav
ffmpeg -i segment.mp4 -af loudnorm=I=-16:TP=-1.5:LRA=11 -c:v copy normalized.mp4
Remotion turns editing problems into composable code. Use it for things that traditional editors make painful:
import { AbsoluteFill, Sequence, Video, useCurrentFrame } from "remotion";
export const VlogComposition: React.FC = () => {
const frame = useCurrentFrame();
return (
<AbsoluteFill>
{/* Main footage */}
<Sequence from={0} durationInFrames={300}>
<Video src="/segments/intro.mp4" />
</Sequence>
{/* Title overlay */}
<Sequence from={30} durationInFrames={90}>
…
Coordinate behavior-preserving code refactors with tests, review, and gated commits.
Compare prediction-market baskets with research notes to find gaps and alignment.
Use Exa neural search for web, code, company, and people research.
Coordinate GitHub and Linear workflows for triage, tracking, and execution alignment.
Accelerate large-scale data pipelines, backfills, and syncs without sacrificing correctness.
Find and evaluate Laravel packages, including health and compatibility checks.
Use AI to split scenes, create subtitles, plan thumbnails, and reformat videos.
Let AI perform deterministic video edits through MCP tools.
Ingest, analyze, search, edit, and monitor video and audio streams.
Automate CapCut editing to create drafts, add media, and enhance videos.
Let AI control CapCut projects for automated video editing workflows.
Automatically split scenes, generate subtitles, and extract thumbnail data for videos.