# 素材分类文档 → V3 因子体系融合分析

日期：2026-03-31
来源：`/Users/russell/Downloads/素材分类.docx`

---

## 一、文档原始内容（完整）

### 细分类型
- 长视频（15s以上）
- 短视频（15s内）
- 图片
- 3秒首屏

### 格式
- 16:9、9:16、1:1、4:5

### 制作来源
- 原创
- 拼接
- 插入

### 主题
- 应急周转
- 消费分期
- 车贷房贷
- 信用贷款
- 企业经营贷
- 低息优惠
- 快速审批
- 信用修复提额
- 合规安全
- 节日假期
- 高热度话题

### 表现方式
- 真人口播
- 图文 + 口播
- 数据对比
- 流程演示
- 场景剧情
- 纯文字
- 动画人物
- 弹窗/短信
- 官方标识
- 解压
- 夺眼球
- 无关画面
- 强引导点击
- 本地化元素

### 视觉表现
- 蓝色
- 绿色
- 紫色
- 极简排版
- 信息密集
- 大字突出

### 内容要素（可添加）
- 还款期限
- 申请流程
- 利率展示
- 额度突出
- 到账速度
- 审核条件
- 无抵押
- 低门槛

---

## 二、逐维度对比分析

### 1. 细分类型 → 已有字段覆盖

| 文档值 | 现有字段 | 现有枚举 | 结论 |
|--------|---------|---------|------|
| 长视频(15s+) | `meta.duration_bucket` | `16_30s`, `31_60s`, `60s_plus` | ✅ 已覆盖 |
| 短视频(15s内) | `meta.duration_bucket` | `0_6s`, `7_15s` | ✅ 已覆盖 |
| 图片 | `meta.media_type` | `image` | ✅ 已覆盖 |
| 3秒首屏 | `structure.opening_speed` | `instant_hook` 近似 | 🟡 概念相关但不完全等价 |

**建议**：不需要新增字段。"3秒首屏"更像一种素材制作策略，`structure.opening_speed = instant_hook` 已经能表达。如果需要更精确，可以在 `structure` 下新增 `first_3s_type` 字段，但优先级低。

### 2. 格式 → 完全覆盖

| 文档值 | 现有字段 | 现有枚举 |
|--------|---------|---------|
| 16:9 | `meta.aspect_ratio` | `16:9` |
| 9:16 | `meta.aspect_ratio` | `9:16` |
| 1:1 | `meta.aspect_ratio` | `1:1` |
| 4:5 | `meta.aspect_ratio` | `4:5` |

✅ 完全覆盖，无需改动。

### 3. 制作来源 → 🔴 完全缺失，需新增

文档值：原创、拼接、插入

这个维度我们体系里完全没有。它描述的是素材的**制作方式**，不是内容或风格。

**建议新增字段**：

```json
"production.source_type": {
  "type": "single_enum",
  "tier": "official",
  "values": ["original", "mashup", "insert", "template", "unknown"]
}
```

含义：
- `original` — 原创拍摄/制作
- `mashup` — 拼接（多段素材剪辑组合）
- `insert` — 插入（在已有素材中插入新元素，如贴片、弹窗）
- `template` — 模板化制作（套模板换文案/画面）
- `unknown` — 无法判断

### 4. 主题 → 🟡 部分覆盖，需扩展

| 文档值 | 现有对应 | 覆盖 |
|--------|---------|------|
| 应急周转 | `offer.primary_angle = emergency_cash` | ✅ |
| 消费分期 | ❌ 无直接对应 | 🔴 缺 |
| 车贷房贷 | ❌ 无直接对应 | 🔴 缺 |
| 信用贷款 | `offer.primary_angle = general_loan_access` 近似 | 🟡 |
| 企业经营贷 | ❌ 无直接对应 | 🔴 缺 |
| 低息优惠 | `offer.primary_angle` 无此值 | 🔴 缺 |
| 快速审批 | `offer.primary_angle = easy_approval` + `fast_disbursement` | ✅ 近似 |
| 信用修复提额 | `offer.secondary_angles = credit_building` | 🟡 有但不是 primary |
| 合规安全 | `offer.primary_angle = trust_security` | ✅ |
| 节日假期 | ❌ 无直接对应 | 🔴 缺 |
| 高热度话题 | ❌ 无直接对应 | 🔴 缺 |

**分析**：文档的"主题"实际上混合了两个维度：
1. **贷款产品类型**（应急周转、消费分期、车贷房贷、信用贷款、企业经营贷）
2. **营销角度/时机**（低息优惠、快速审批、信用修复提额、合规安全、节日假期、高热度话题）

**建议**：

A) 新增 `offer.loan_product_type` 字段：
```json
"offer.loan_product_type": {
  "type": "single_enum",
  "tier": "official",
  "values": ["emergency_cash", "consumer_installment", "auto_mortgage", "credit_loan", "business_loan", "general", "unknown"]
}
```

B) 扩展 `offer.primary_angle` 增加：
- `low_interest` — 低息优惠
- `credit_building` — 信用修复提额（从 secondary 提升）

C) 新增 `copy.topical_hook` 字段：
```json
"copy.topical_hook": {
  "type": "single_enum",
  "tier": "official",
  "values": ["holiday_festival", "trending_topic", "seasonal", "news_event", "none", "unknown"]
}
```

### 5. 表现方式 → 🟡 分散覆盖，需整合

| 文档值 | 现有对应 | 字段 |
|--------|---------|------|
| 真人口播 | `ugc_face_to_camera` | `platform_style.format_pattern` ✅ |
| 图文 + 口播 | `voiceover_broll` 近似 | `platform_style.format_pattern` 🟡 |
| 数据对比 | `comparison_layout` | `visual.secondary_elements` ✅ |
| 流程演示 | `demo_walkthrough` / `tutorial_steps` | `structure.story_format` ✅ |
| 场景剧情 | `testimonial_story` / `problem_solution` | `structure.story_format` 🟡 |
| 纯文字 | `text_overlay_static` | `platform_style.format_pattern` ✅ |
| 动画人物 | `animation` | `visual.primary_style` ✅ |
| 弹窗/短信 | `chat_style` / `notification` | 分散 🟡 |
| 官方标识 | `branding_visibility` | `visual.branding_visibility` 🟡 |
| 解压 | ❌ 无 | 🔴 缺 |
| 夺眼球 | `interruption_strength = high` | `platform_style` 🟡 |
| 无关画面 | ❌ 无 | 🔴 缺 |
| 强引导点击 | `swipe_click` / `aggressive_sales` | `copy.cta_style` / `copy.tone` 🟡 |
| 本地化元素 | `subject.localization_cues` | ✅ |

**分析**：文档的"表现方式"是优化师最直觉的分类法，混合了视觉风格、叙事结构、制作手法。我们体系里已经分散在多个字段中覆盖了大部分，但有几个概念缺失。

**建议**：

A) 在 `platform_style.format_pattern` 增加：
- `image_text_voiceover` — 图文+口播
- `skit_drama` — 场景剧情
- `popup_notification` — 弹窗/短信模拟

B) 新增 `visual.attention_tactic` 字段：
```json
"visual.attention_tactic": {
  "type": "multi_enum",
  "tier": "official",
  "values": ["shock_visual", "unrelated_hook", "decompression_asmr", "strong_click_bait", "official_branding", "none", "unknown"]
}
```

含义：
- `shock_visual` — 夺眼球（强视觉冲击）
- `unrelated_hook` — 无关画面（用不相关内容吸引注意力）
- `decompression_asmr` — 解压类内容
- `strong_click_bait` — 强引导点击
- `official_branding` — 官方标识突出

### 6. 视觉表现 → 🟡 部分覆盖，需扩展

| 文档值 | 现有对应 | 覆盖 |
|--------|---------|------|
| 蓝色 | `visual.color_tone = brand_blue` | ✅ |
| 绿色 | `visual.color_tone = brand_green` | ✅ |
| 紫色 | ❌ 无 | 🔴 缺 |
| 极简排版 | `visual.text_density = low` | 🟡 近似 |
| 信息密集 | `visual.text_density = high` | ✅ |
| 大字突出 | ❌ 无直接对应 | 🔴 缺 |

**建议**：

A) `visual.color_tone` 增加 `brand_purple`

B) 新增 `visual.layout_style` 字段：
```json
"visual.layout_style": {
  "type": "single_enum",
  "tier": "official",
  "values": ["minimal_clean", "info_dense", "large_text_focus", "balanced", "unknown"]
}
```

### 7. 内容要素 → 🟡 部分覆盖，需独立字段

| 文档值 | 现有对应 | 覆盖 |
|--------|---------|------|
| 还款期限 | `flexible_repayment` 角度 | 🟡 |
| 申请流程 | `tutorial_steps` / `demo_walkthrough` | 🟡 |
| 利率展示 | `copy.number_usage = rate_only / amount_and_rate` | ✅ |
| 额度突出 | `copy.number_usage = amount_only / amount_and_rate` | ✅ |
| 到账速度 | `offer.primary_angle = fast_disbursement` | ✅ |
| 审核条件 | `offer.primary_angle = low_requirements` | ✅ |
| 无抵押 | `offer.primary_angle = low_requirements` 近似 | 🟡 |
| 低门槛 | `offer.primary_angle = low_requirements` | ✅ |

**分析**：这些"内容要素"本质上是素材中**展示了哪些具体信息点**。我们现有体系通过 `offer.primary_angle` 和 `copy.number_usage` 覆盖了一部分，但不够细。

**建议新增**：
```json
"content.info_points": {
  "type": "multi_enum",
  "tier": "official",
  "values": [
    "repayment_terms",
    "application_process",
    "interest_rate",
    "loan_amount",
    "disbursement_speed",
    "approval_criteria",
    "no_collateral",
    "low_barrier",
    "none"
  ]
}
```

这个字段跟 `offer.primary_angle` 不冲突：`primary_angle` 是"这条素材主打什么卖点"，`content.info_points` 是"这条素材里实际展示了哪些信息"。

---

## 三、融合方案总结

### 需要新增的字段（6个）

| 新字段 | 类型 | 来源维度 | 优先级 |
|--------|------|---------|--------|
| `production.source_type` | single_enum | 制作来源 | 高 |
| `offer.loan_product_type` | single_enum | 主题（产品类型） | 高 |
| `copy.topical_hook` | single_enum | 主题（时机） | 中 |
| `visual.attention_tactic` | multi_enum | 表现方式（注意力策略） | 高 |
| `visual.layout_style` | single_enum | 视觉表现（排版） | 中 |
| `content.info_points` | multi_enum | 内容要素 | 高 |

### 需要扩展枚举值的字段（3个）

| 字段 | 新增值 |
|------|--------|
| `offer.primary_angle` | `low_interest`, `credit_building` |
| `platform_style.format_pattern` | `image_text_voiceover`, `skit_drama`, `popup_notification` |
| `visual.color_tone` | `brand_purple` |

### 不需要改动的字段

- `meta.media_type` ✅
- `meta.duration_bucket` ✅
- `meta.aspect_ratio` ✅
- `visual.text_density` ✅
- `visual.branding_visibility` ✅
- `subject.localization_cues` ✅
- `structure.story_format` ✅
- `copy.number_usage` ✅
