Enjoy 50% OFF Vidu Q3 & Q3 Pro models • Only on WaveSpeedAI | May 20 – Jun 2

Vidu Template Halloween

vidu /

Vidu Halloween Templates delivers ready-made image and video templates for spooky promos and event invites with overlays. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

video-effects
Input

Drag & drop or click to upload

preview
The background music for generating the output.

Idle

$0.05per run·~20 / $1

ExamplesView all

Related Models

README

Vidu Halloween Templates — Photo-to-Spooky Clip

vidu/template/halloween turns a single portrait into a short, ready-to-share Halloween clip using curated, cinematic templates. Each template applies themed styling, motion, sound design, and compositing—no manual editing needed.

✨ Why it’s great (Halloween-first)

  • Curated spooky styles: one-click looks inspired by horror and dark fantasy.
  • Face-aware compositing: preserves identity while adding makeup, props, and FX.
  • Cinematic motion + SFX: optional BGM and atmospheric animations baked in.
  • Share-ready: export a finished vertical or horizontal clip in seconds.

🧩 Parameters

  • image* (required) — Portrait or bust shot (URL or upload).
  • template* (required) — Halloween style preset, e.g.: tim_burton, broomstick_fly, witchy_pet, pumpkin_head, sexy_devil, dance_with_ghost, crow_arrival, clown_makeup, shadow_of_terror_video, not_look_back_video, turn_into_zombie
  • bgm (checkbox) — Adds Halloween background music.
  • seed (integer) — Reproducibility; change to explore safe variants.

🚀 How to Use

  1. Upload image — a clear, front-facing portrait works best (avoid heavy occlusions).
  2. Pick a template that matches the vibe (makeup, creature, chase scene, etc.).
  3. Toggle bgm if you want music baked in.
  4. (Optional) Set seed for repeatable results; click refresh to try variations.
  5. Click Run and download your Halloween clip.

💰 Pricing

  • Per job: $0.40.
Accessibility:This website uses AI models provided by third parties.

Template Halloween API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/vidu/template/halloween 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 Template Halloween below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/vidu/template/halloween" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg",
    "template": "tim_burton",
    "bgm": true,
    "seed": 0
}'

# 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("vidu/template/halloween", {
        "image": "https://example.com/your-input.jpg",
        "template": "tim_burton",
        "bgm": true,
        "seed": 0
});

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

output = wavespeed.run(
    "vidu/template/halloween",
    {
    "image": "https://example.com/your-input.jpg",
    "template": "tim_burton",
    "bgm": true,
    "seed": 0
}
)

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

Template Halloween API — Frequently asked questions

What is the Template Halloween API?

Template Halloween is a Vidu model for AI inference, exposed as a REST API on WaveSpeedAI. Vidu Halloween Templates delivers ready-made image and video templates for spooky promos and event invites with overlays. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Template Halloween 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/vidu/vidu-template-halloween.

How much does Template Halloween cost per run?

Template Halloween starts at $0.050 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 Template Halloween accept?

Key inputs: `image`, `seed`, `bgm`, `template`. 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/vidu/vidu-template-halloween.

How do I get started with the Template Halloween 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 Template Halloween outputs commercially?

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