帮助用户完成素材剪辑、结构编排、AI增强与成片润色的视频制作流程。
该技能材料显示其本质上是一个开源的提示型视频编辑工作流说明,不要求密钥,也未声明固定远程端点,整体风险偏低。其内容涉及本地视频处理、文件读写及可能调用第三方服务,但从现有材料看更接近常规工具能力,主要需留意实际落地时的数据与依赖边界。
材料与安装信息均标注无需密钥或环境变量;README虽提到 ElevenLabs、fal.ai 等外部服务,但未声明该技能自身必需凭证,因此当前未见明确的凭证收集、存储或滥用风险。
元数据未声明远程端点,但 README 工作流提及 ElevenLabs、fal.ai,以及借助 Claude/Codex 处理转录与结构化,这意味着实际使用时可能将音视频或转录内容发送至第三方服务。未见不明外发端点,但若启用这些环节应核实数据是否离开本地。
README明确包含 FFmpeg 命令与 shell 脚本示例,用于切分、拼接、转码和批处理视频,说明该类工作流会在本机执行命令行程序。这属于视频处理技能的常规能力,未见申请异常系统权限或隐藏执行行为。
该技能围绕现有视频素材编辑,天然需要读取原始视频、音频、转录及中间文件,并写出片段、代理文件、拼接结果等产物。材料未显示超出视频编辑场景的不相关数据访问,也未见过度授权说明。
来源为 GitHub 开源仓库,且社区采用度很高(约 21 万 star),这些都是明显的正面可信度信号。许可证与维护状态未明确,仍建议复核,但基于现有事实未见闭源、失维明显或可疑投递等高风险红旗。
复制安装指令,让 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 用量。
接入并理解视频音频内容,支持检索片段、编辑处理与实时事件告警。