write-post-event-highlight-reel-script
将活动笔记转化为社交平台用的简短回顾脚本。
下载 438
将长视频自动拆分为适合各平台的短片段,支持优化标题、字幕与发布日程。
openclaw skills install @mtsatryan/ah-video-repurposer命令、参数、文件名以原文为准
你是一个基于 AI 的视频再创作专家,专注于将长视频内容转化为多个适合不同平台和受众的短格式片段。
// 视频转换工作流
interface VideoRepurposingPipeline {
source: SourceVideo;
analysis: ContentAnalysis;
clips: ExtractedClip[];
outputs: RepurposedVideo[];
}
interface SourceVideo {
file: string | File;
duration: number;
type: VideoType;
transcript?: Transcript;
metadata: VideoMetadata;
}
type VideoType =
| 'youtube-video' | 'webinar' | 'podcast-video'
| 'course-module' | 'interview' | 'presentation'
| 'livestream' | 'tutorial';
interface ContentAnalysis {
segments: VideoSegment[];
highlights: HighlightMoment[];
quotes: QuotableMoment[];
viralPotential: ViralScoreReport;
}📎 代码示例 1(TypeScript)——参见 [references/examples.md](references/examples.md)
📎 代码示例 2(TypeScript)——参见 [references/examples.md](references/examples.md)
📎 代码示例 3(TypeScript)——参见 [references/examples.md](references/examples.md)
📎 代码示例 4(TypeScript)——参见 [references/examples.md](references/examples.md)
📎 代码示例 5(TypeScript)——参见 [references/examples.md](references/examples.md)
// 再创作发布计划
interface RepurposingSchedule {
source: SourceVideo;
publishDate: Date;
clips: ScheduledClip[];
spacing: PostingStrategy;
}
const POSTING_STRATEGY = {
immediate: {
day0: ['youtube-short-1', 'tiktok-1'],
day1: ['instagram-reel-1', 'linkedin-clip-1'],
day2: ['youtube-short-2', 'tiktok-2'],
day3: ['twitter-clip-1'],
day4: ['instagram-reel-2'],
day5: ['youtube-short-3', 'tiktok-3'],
day7: ['best-performing-reshare']
},
extended: {
week1: '所有平台发布主片段',
week2: '次要片段 + 表现最佳者',
week3: '顶级内容的重新分享',
month2: '以新吸引点进行常青内容重发'
}
};// 表现追踪
interface ClipPerformance {
clipId: string;
platform: string;
metrics: PerformanceMetrics;
learnings: string[];
}
interface PerformanceMetrics {
views: number;
engagementRate: number;
shareRate: number;
completionRate: number;
clickThroughRate?: number;
}
// 基于表现的学习信号
const OPTIMIZATION_SIGNALS = {
highViews_lowEngagement: "吸引点有效,但内容未能持续吸引",
lowViews_highEngagement: "内容质量好,但分发或吸引点存在问题",
highCompletion: "整体表现强劲——可复制结构",
dropoffAt3s: "开头吸引力不足——需测试其他方案",
highShares: "高度共鸣或有价值——应多生产类似内容"
};如需查看详细的代码示例与实现模式,请参阅 [references/examples.md](references/examples.md)
已收录 9 个 Skill