返回顶部
v

video-ad-deconstructor视频广告解析

Deconstruct video ad creatives into marketing dimensions using Gemini AI. Extracts hooks, social proof, CTAs, target audience, emotional triggers, urgency tactics, and more. Use when analyzing competitor ads, generating creative briefs, or understanding what makes ads effective.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
2,116
下载量
免费
免费
5
收藏
概述
安装方式
版本历史

video-ad-deconstructor

视频广告解构器

基于AI的视频广告创意解构,转化为可执行的营销洞察。

该技能的功能

  • - 生成摘要:提取产品、功能、受众、行动号召
  • 解构营销维度:钩子、社会认同、紧迫感、情感等
  • 支持多种内容类型:消费品和游戏广告
  • 进度追踪:长分析的回调支持
  • JSON输出:供下游处理的结构化数据

设置

1. 环境变量

bash

Gemini必需


GOOGLEAPPLICATIONCREDENTIALS=/path/to/service-account.json

2. 依赖项

bash
pip install vertexai

使用方法

基础广告解构

python
from scripts.deconstructor import AdDeconstructor
from scripts.models import ExtractedVideoContent
import vertexai
from vertexai.generative_models import GenerativeModel

初始化Vertex AI

vertexai.init(project=your-project-id, location=us-central1) gemini_model = GenerativeModel(gemini-1.5-flash)

创建解构器

deconstructor = AdDeconstructor(geminimodel=geminimodel)

创建提取的内容(来自video-ad-analyzer或手动)

content = ExtractedVideoContent( video_path=ad.mp4, duration=30.0, transcript=厌倦了凌乱的线缆?来认识一下CableFlow..., text_timeline=[{at: 0.0, text: [今日五折优惠]}], scene_timeline=[{timestamp: 0.0, description: 用户对缠绕的线缆感到沮丧}] )

生成摘要

summary = deconstructor.generate_summary( transcript=content.transcript, scenes=0.0s: 用户对缠绕的线缆感到沮丧, text_overlays=今日五折优惠 ) print(summary)

完整解构

python

解构所有营销维度


def on_progress(fraction, dimension):
print(f进度: {fraction*100:.0f}% - 已分析{dimension})

analysis = deconstructor.deconstruct(
extracted_content=content,
summary=summary,
is_gaming=False, # 游戏广告设为True
onprogress=onprogress
)

访问各维度

for dimension, data in analysis.dimensions.items(): print(f\n{dimension}:) print(data)

输出结构

摘要输出

产品/应用: CableFlow线缆整理器

主要功能:
磁吸设计: 自动整理线缆
通用适配: 适用于所有线缆类型
优质材料: 耐用硅胶材质

目标受众: 对线缆管理感到困扰的技术用户

行动号召: 立即下单,享受五折优惠

解构输出

python
{
spoken_hooks: {
elements: [
{
hook_text: 厌倦了凌乱的线缆?,
timestamp: 0:00,
hook_type: 问题式提问,
effectiveness: 高 - 直击痛点
}
]
},
social_proof: {
elements: [
{
proof_type: 用户数量,
claim: 超过100万满意客户,
credibility_score: 7
}
]
},
# ... 更多维度
}

解构的营销维度

维度提取内容
spokenhooks开场钩子(来自转录文本)
visualhooks
吸引注意力的视觉元素 | | text_hooks | 屏幕文字钩子 | | social_proof | 用户评价、用户数量、评论 | | urgency_scarcity | 限时优惠、库存警告 | | emotional_triggers | 恐惧、渴望、归属感等 | | problem_solution | 痛点和解决方案 | | cta_analysis | 行动号召有效性 | | target_audience | 广告目标受众 | | unique_mechanism | 产品独特之处 |

自定义提示词

编辑prompts/marketing_analysis.md中的提示词进行自定义:

  • - 要分析的维度
  • 输出格式
  • 评分标准
  • 游戏广告与消费品广告的侧重点

常见问题解答

  • - 这个广告使用了什么钩子?
  • 情感诉求是什么?
  • 这个广告如何制造紧迫感?
  • 这个广告的目标受众是谁?
  • 展示了什么社会认同?
  • 解构这个竞争对手的广告

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 meta-video-ad-deconstructor-1776364697 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 meta-video-ad-deconstructor-1776364697 技能

通过命令行安装

skillhub install meta-video-ad-deconstructor-1776364697

下载

⬇ 下载 video-ad-deconstructor v1.0.0(免费)

文件大小: 10.44 KB | 发布时间: 2026-4-17 14:39

v1.0.0 最新 2026-4-17 14:39
Initial release – AI-powered deconstruction of video ad creatives for marketing insights.

- Extracts hooks, social proof, CTAs, target audience, emotional triggers, urgency tactics, and more from video ads using Gemini AI.
- Supports both consumer product and gaming ads, with structured JSON output for easy integration.
- Provides summary generation and detailed breakdown by marketing dimension (hooks, proof, emotion, etc.).
- Includes progress callbacks for tracking long-running analyses.
- Customizable dimensions and prompts for tailored deconstruction and scoring.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部