帮助用户完成素材剪辑、结构编排、AI增强与成片润色的视频制作流程。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "video-editing" 技能: 1. 下载 https://raw.githubusercontent.com/affaan-m/ECC/main/skills/video-editing/SKILL.md 2. 保存为 ~/.claude/skills/video-editing/SKILL.md 3. 装好后重载技能,告诉我可以用了
请根据我拍摄的旅行素材,帮我规划一个 3 分钟 vlog 的剪辑流程:先筛选高光片段,再按时间线组织,补充转场、字幕、背景音乐和旁白建议,并说明哪些步骤适合用 FFmpeg、Remotion、ElevenLabs、Descript 或 CapCut 完成。
一套清晰的 vlog 剪辑方案,包含镜头结构、工具分工和后期润色建议。
我想把产品演示素材剪成 60 秒宣传视频,请帮我设计分镜结构、节奏安排、文案字幕和 AI 配音方案,并给出从原始素材处理到最终导出的完整工作流。
一个适合宣传用途的短视频制作方案,含脚本节奏、字幕文案与导出流程。
请帮我优化一段访谈视频的后期流程:包括去除空白和口误、重组段落顺序、生成字幕、清理音频、补充 B-roll 建议,并推荐适合的 AI 工具组合。
一份访谈视频精修方案,覆盖剪辑、字幕、音频清理和内容增强步骤。
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:
videodbOutput: 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}>
…
帮助用户在回答前选择简短、标准或详细版本,控制回复深度与 token 用量。
通过自然语言自动化操作 CapCut,快速完成视频草稿、素材添加与特效增强。