Vidu Q3 与 Q3 Pro 模型 5 折 · 仅限 WaveSpeedAI | 5月20日 – 6月2日

AI Video Ads

wavespeed-ai /

AI Video Ads generates product advertisement videos. Provide a person photo, product name, and optional product image or script, and AI creates a professional ad video. Ready-to-use REST inference API, no coldstarts, affordable pricing.

image-to-video
输入

拖放文件或点击上传

preview

拖放文件或点击上传

就绪

$0.4每次运行·~25 / $10

下一步:

示例查看全部

相关模型

README

AI Video Ads

AI Video Ads generates professional product advertisement videos from a portrait photo and a product name. Upload a person photo, provide the product details, and AI creates a polished spokesperson-style ad video — complete with script, voiceover, and lip-sync.

Why Choose This?

  • Spokesperson ad generation Turns any portrait into a professional talking-head product advertisement without filming or scripting.

  • AI-generated script Provide a product name and optional selling points — the model writes and delivers the ad script automatically.

  • Product image compositing Upload a product photo for more accurate visual integration of the product into the ad.

  • Multilingual output Generate ads in English, Chinese, Spanish, French, or Portuguese to reach global audiences.

  • Flexible duration Generate ads from 5 to 15 seconds to fit different ad formats and platforms.

Parameters

ParameterRequiredDescription
imageYesPortrait photo of the spokesperson (URL or file upload).
product_nameYesName of the product being advertised.
product_imageNoProduct photo for more accurate visual compositing in the ad.
textNoScript reference or selling points for the AI to use when generating the ad.
languageNoOutput language: en, zh, es, fr, or pt.
durationNoVideo length in seconds. Range: 5–15. Default: 5.

How to Use

  1. Upload your person photo — a clear, front-facing portrait works best.
  2. Enter the product name — the AI will generate an appropriate ad script around it.
  3. Upload a product image (optional) — improves visual compositing accuracy.
  4. Add text (optional) — provide key selling points or a rough script for the AI to reference.
  5. Select language (optional) — choose en, zh, es, fr, or pt for the output language.
  6. Set duration — choose between 5 and 15 seconds.
  7. Submit — generate, preview, and download your ad video.

Pricing

DurationCost
5s$0.40
10s$0.80
15s$1.20

Billing Rules

  • Rate: $0.08 per second
  • Duration range: 5–15 seconds

Best Use Cases

  • E-commerce advertising — Generate quick spokesperson ads for product listings and social media campaigns.
  • Social media content — Create short-form ad videos for Instagram Reels, TikTok, and YouTube Shorts.
  • Multilingual campaigns — Produce the same ad in multiple languages without additional filming.
  • Small business marketing — Professional ad quality without a production crew or studio.
  • Product launches — Rapidly generate ad variations for A/B testing across different platforms.

Pro Tips

  • Use a clean, well-lit front-facing portrait with a neutral background for the most professional result.
  • Provide key selling points in the text field to guide the AI script toward your actual marketing message.
  • Upload a product image whenever possible — it significantly improves how the product is visually integrated.
  • Match duration to your target platform: 5s for social ads, 10–15s for more detailed product explanations.

Notes

  • image and product_name are required fields; all other parameters are optional.
  • Providing product_image improves compositing accuracy.
  • text is used as reference for the AI-generated script — it does not need to be a finished script.
  • Ensure image URLs are publicly accessible if using links rather than direct uploads.
  • Please ensure your content complies with WaveSpeed AI's usage policies.
无障碍:本网站使用的 AI 模型由第三方提供。

Ai Video Ads API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-video-ads with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Ai Video Ads below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-video-ads" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg",
    "language": "en",
    "duration": 5
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/ai-video-ads", {
        "image": "https://example.com/your-input.jpg",
        "language": "en",
        "duration": 5
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/ai-video-ads",
    {
    "image": "https://example.com/your-input.jpg",
    "language": "en",
    "duration": 5
}
)

print(output["outputs"][0])  # → URL of the generated output

Ai Video Ads API — Frequently asked questions

What is the Ai Video Ads API?

Ai Video Ads is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. AI Video Ads generates product advertisement videos. Provide a person photo, product name, and optional product image or script, and AI creates a professional ad video. Ready-to-use REST inference API, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Ai Video Ads API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-video-ads.

How much does Ai Video Ads cost per run?

Ai Video Ads starts at $0.40 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Ai Video Ads accept?

Key inputs: `image`, `duration`, `language`, `product_image`, `product_name`, `text`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/ai-video-ads.

How do I get started with the Ai Video Ads API?

Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.

Can I use Ai Video Ads outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.