ユースケース

Seedance 2.0 API による AI マーケティング動画制作

Seedance 2.0 API を使ってマーケティング動画、ソーシャルメディア広告、ブランドコンテンツを大規模に生成。クリエイティブ制作コストを 90% 削減します。

マーケティング & 広告クリエイティブ

Seedance 2.0 API による AI 生成コンテンツで、マーケティング動画制作をスケールさせます。

課題

マーケティングチームは次の用途で動画コンテンツを必要とします。

  • ソーシャルメディア広告(Instagram、TikTok、YouTube)
  • メールマーケティングキャンペーン
  • ランディングページのヒーロー動画
  • ブランドストーリーテリングコンテンツ

しかし従来の方法でテストと反復に十分な動画量を制作するのは高価で時間がかかります。

ソリューション

Seedance 2.0 API はマーケティングチームが瞬時に数十本の動画バリアントを生成し、異なるクリエイティブの方向性をテストし、勝者をスケールさせることを可能にします — 秒単位課金 で予測可能なコストです。

推奨モデル

  • seedance-2.0-fast-text-to-video — A/B バリアント制作の第一選択肢。大量反復に高速で低価格
  • seedance-2.0-text-to-video — 勝つコンセプトを選んだ後、最終納品に Standard を使用
  • seedance-2.0-image-to-video — 最初フレームとして使うブランド/プロダクト画像がある場合
  • seedance-2.0-reference-to-video — ブランド資産、スタイル参照、参照カメラ運びを組み合わせる必要がある場合

ユースケース

ソーシャルメディア広告

A/B テスト用に複数の広告バリアントを生成します。

import requests

variations = [
    "A cup of artisan coffee poured in slow motion, warm cafe ambiance, cozy brand feel",
    "A cup of artisan coffee on a morning desk, sunlight streaming in, lifestyle brand",
    "A cup of artisan coffee held by hands, walking in autumn park, warm tones",
]

headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

task_ids = []
for prompt in variations:
    response = requests.post(
        "https://api.evolink.ai/v1/videos/generations",
        headers=headers,
        json={
            "model": "seedance-2.0-fast-text-to-video",
            "prompt": prompt,
            "quality": "720p",
            "duration": 5,
            "aspect_ratio": "9:16"
        }
    )
    task_ids.append(response.json()["id"])

ブランドストーリーテリング

複数の独立した呼び出しで一貫した複数シーンのブランドナラティブを作成します。

# シーン 1: 問題
response1 = requests.post(
    "https://api.evolink.ai/v1/videos/generations",
    headers=headers,
    json={
        "model": "seedance-2.0-text-to-video",
        "prompt": "A tired office worker staring at their laptop, dim lighting, Monday mood",
        "quality": "720p",
        "duration": 5
    }
)

# シーン 2: 解決
response2 = requests.post(
    "https://api.evolink.ai/v1/videos/generations",
    headers=headers,
    json={
        "model": "seedance-2.0-text-to-video",
        "prompt": "The same person discovering a new app, face lighting up, bright colors",
        "quality": "720p",
        "duration": 5
    }
)

# シーン 3: 結果
response3 = requests.post(
    "https://api.evolink.ai/v1/videos/generations",
    headers=headers,
    json={
        "model": "seedance-2.0-text-to-video",
        "prompt": "The person happily productive, modern workspace, upbeat energy",
        "quality": "720p",
        "duration": 5
    }
)

ヒント: 3 つのシーン全体でキャラクターの一貫性が必要な場合は、代わりに seedance-2.0-reference-to-video を使用してください。同じキャラクター参照画像を image_urls に渡し、各プロンプトで「the character's appearance matches image 1」と書きます。

メールマーケティング

メールキャンペーン向けにパーソナライズされた動画サムネイルとヒーロークリップを生成します。

ROI 分析

指標従来方式Seedance API
動画 1 本あたりのコスト$200〜1,000秒単位課金、1 クリップ数セント
制作時間1〜5 日30〜180 秒
キャンペーンあたりのバリアント数2〜320〜50
A/B テスト能力限定的無制限

マーケター向けプロンプトテンプレート

プロダクトショーケース

A [product] displayed on [surface], [lighting style], product showcase, premium brand feel

ライフスタイルコンテンツ

A person [action] with [product], [setting], [mood], brand storytelling, cinematic

抽象 / モーショングラフィックス

Flowing [color] gradients morphing into [brand element], modern, dynamic, corporate style

はじめる

  1. 無料 API キーを取得
  2. 次のキャンペーン向けに動画バリアントを生成
  3. 最小コストでテストと反復
  4. 勝者をスケール

関連

構築する準備はできましたか?

無料APIキーを取得して、ユースケースに合ったビデオ生成を始めましょう。