50 % sur les modèles Vidu Q3 et Q3 Pro · Uniquement sur WaveSpeedAI | 20 mai – 2 juin

AI Virtual Outfit Tryon

wavespeed-ai /

AI Virtual Outfit Try-On generates videos of a person wearing uploaded clothing. Upload a portrait and clothing images, add an optional prompt, and get a try-on video. Ready-to-use REST inference API, no coldstarts, affordable pricing.

image-to-video
Entrée

Glisser-déposer ou cliquer pour téléverser

preview

Glisser-déposer ou cliquer pour téléverser

preview

En attente

$0.195par exécution·~51 / $10

Suivant :

ExemplesTout voir

Modèles associés

README

AI Virtual Outfit Try-On

AI Virtual Outfit Try-On generates realistic videos of you wearing any outfit. Upload a portrait and clothing images — AI composites the look onto your body and animates it into a natural, wearable video. See how any outfit looks on you before buying, without a fitting room.

Why Choose This?

  • Realistic virtual try-on video Goes beyond static image try-on — generates an animated video showing the outfit in natural motion on your body.

  • Multi-garment support Upload up to 8 clothing images per request to try on complete outfits with multiple pieces.

  • Prompt-guided scene control Optionally describe the desired video scene, background, or mood to customize the visual context of the try-on.

  • Flexible duration Generate clips from 5 to 15 seconds to capture enough movement to evaluate the outfit.

Parameters

ParameterRequiredDescription
imageYesPortrait photo of the person (URL or file upload).
clothes_imagesYesClothing image URLs to try on. Up to 8 images per request.
promptNoText description of the desired video scene, background, or atmosphere.
durationNoVideo length in seconds. Range: 5–15. Default: 5.

How to Use

  1. Upload your portrait — a clear, full-body or upper-body photo works best.
  2. Upload clothing images — provide image URLs for each garment you want to try on (up to 8).
  3. Write a prompt (optional) — describe the scene, setting, or vibe you want for the video.
  4. Set duration — choose between 5 and 15 seconds.
  5. Submit — generate, preview, and download your try-on video.

Pricing

DurationCost
5s$0.195
10s$0.390
15s$0.585

Billing Rules

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

Best Use Cases

  • E-commerce & fashion retail — Let customers virtually try on outfits before purchasing.
  • Personal styling — See how multiple garments look together as a complete outfit.
  • Social media content — Create fashion try-on videos for Instagram and TikTok.
  • Wardrobe planning — Preview new clothing against your actual appearance before buying.

Pro Tips

  • Use a clear, well-lit portrait with a neutral background for the most accurate outfit compositing.
  • Full-body or upper-body photos give the model more context for realistic garment placement.
  • Upload clean, front-facing clothing images on a plain background for the cleanest try-on results.
  • Use the prompt to set the scene — for example, "walking in a city street, natural daylight" for a lifestyle feel.

Notes

  • Both image and clothes_images are required fields.
  • Up to 8 clothing images can be provided per request.
  • Ensure all image URLs are publicly accessible if using links rather than direct uploads.
  • Please ensure your content complies with WaveSpeed AI's usage policies.
Accessibilité :Ce site utilise des modèles d'IA fournis par des tiers.

Ai Virtual Outfit Tryon API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-virtual-outfit-tryon 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 Virtual Outfit Tryon below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/ai-virtual-outfit-tryon" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "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-virtual-outfit-tryon", {
        "image": "https://example.com/your-input.jpg",
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "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-virtual-outfit-tryon",
    {
    "image": "https://example.com/your-input.jpg",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "duration": 5
}
)

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

Ai Virtual Outfit Tryon API — Frequently asked questions

What is the Ai Virtual Outfit Tryon API?

Ai Virtual Outfit Tryon is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. AI Virtual Outfit Try-On generates videos of a person wearing uploaded clothing. Upload a portrait and clothing images, add an optional prompt, and get a try-on 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 Virtual Outfit Tryon 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-virtual-outfit-tryon.

How much does Ai Virtual Outfit Tryon cost per run?

Ai Virtual Outfit Tryon starts at $0.20 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 Virtual Outfit Tryon accept?

Key inputs: `prompt`, `image`, `duration`, `clothes_images`. 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-virtual-outfit-tryon.

How do I get started with the Ai Virtual Outfit Tryon 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 Virtual Outfit Tryon 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.