Seedream 5.0 Pro 정식 출시 | 이미지 생성기에서 사용해보기 →

Voice Design

minimax /

MiniMax Voice Design generates natural voices from textual descriptions - no cloning - lets you set tone, accent and personality. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

text-to-audio
입력
Hint: Custom user-defined ID: Must be at least 8 characters long, starting with a letter, and include both letters and numbers (e.g., WaveSpeed-20250717-1050). Duplicate voice IDs will result in an error. This ID can be used with the following models:minimax/speech-02-hd minimax/speech-02-turbo

대기 중

$0.5실행당·~20 / $10

예시전체 보기

Excited and enthusiastic male product reviewer (e.g., tech vlogger), fast-paced, high energy, and persuasive.

Warm, soft-spoken female voice with a gentle tone, medium-slow pace, soothing

Deep, gravelly male voice, calm and serious, slow and measured pace

Energetic, bright female voice, slightly high-pitched, excited emotion, fast-paced

oung male voice, curious and expressive, mid-speed with rising intonation

Elderly female voice, soft and nostalgic, slow-paced, gentle vibrato

Confident, assertive female voice, professional tone, medium-fast pace

Teenage male voice, casual and laid-back, slight sarcasm, mid-speed

Robotic neutral voice, genderless, steady rhythm, monotone but clear articulation

Deep, dramatic male voice, cinematic trailer style, slow and intense

Sweet, childlike female voice, playful and whimsical, fast tempo

관련 모델

README

MiniMax Voice Design

MiniMax Voice Design is a state-of-the-art voice synthesis model developed by MiniMax. Instead of cloning a voice from a reference audio, it generates high-quality voices based on your textual voice description, allowing you to create speech with the desired tone, accent, and personality.

Key Features

  • High-Fidelity Voice Generation Produces speech that matches your description with natural prosody and pronunciation.

  • Flexible Voice Design Create a wide range of voices by simply describing the desired characteristics—no reference audio required.

  • Emotion and Tone Control Fine-tune speaking style and emotion for storytelling, games, and character dialogue.

  • Multilingual Output Supports voice design across different languages and smooth code-switching.

  • Low-Latency Inference Optimized for real-time use cases, including live interactions and dialogue generation.

Use Cases

  • AI voiceovers for content creators and influencers
  • Personalized digital assistants and chatbots
  • Audiobook narration in a specific style
  • Interactive gaming and character voices
  • Assistive speech for individuals with voice loss

Model Overview

MiniMax Voice Design uses a neural TTS pipeline with robust speaker and prosody modeling. By leveraging your textual description, it offers clarity, control, and speed, delivering production-ready results in diverse environments.

Note

Your custom voice ID must be used at least once with one of the voice models on our platform to be saved permanently. Such as:

Otherwise, we can only store it for 7 days. After that, it will be deleted and the voice ID will no longer be callable.

For easier reuse later, please make sure to use your voice ID once in one of the models above after creating it.

참고:이 웹사이트는 제3자가 제공하는 AI 모델을 사용합니다.

Voice Design API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/minimax/voice-design with your input as JSON. The endpoint returns a prediction id. Start polling the result endpoint around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. On completed, read URLs from data.outputs. Examples for Voice Design below.

HTTP example
# Submit the prediction
curl --fail-with-body --connect-timeout 10 --max-time 60 \
  -X POST "https://api.wavespeed.ai/api/v3/minimax/voice-design" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light"
}'

# Wait at least 2 seconds, then poll. Safe GET requests may be retried.
curl --fail-with-body --connect-timeout 10 --max-time 30 \
  --retry 4 --retry-all-errors --retry-delay 1 \
  -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# Start at 2 seconds and increase the interval for long-running tasks.
# Stop on completed, failed, cancelled, or timeout.
Node.js example
// npm install wavespeed
const { Client } = require('wavespeed');

const apiKey = process.env.WAVESPEED_API_KEY;
if (!apiKey) throw new Error('Set WAVESPEED_API_KEY');
const client = new Client(apiKey, {
  maxConnectionRetries: 5,
  retryInterval: 1.0,
});

try {
  const result = await client.run("minimax/voice-design", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light"
}, {
    timeout: 3600,
    pollInterval: 2.0,
  });
  console.log(result.outputs);
} catch (error) {
  console.error('Generation failed:', error);
  process.exitCode = 1;
}
Python example
# pip install wavespeed
import os
from wavespeed import Client

client = Client(
    api_key=os.environ["WAVESPEED_API_KEY"],
    max_connection_retries=5,
    retry_interval=1.0,
)

try:
    output = client.run(
        "minimax/voice-design",
        {
    "prompt": "A cinematic shot of a city at sunset, soft golden light"
},
        timeout=3600.0,
        poll_interval=2.0,
    )
    print(output["outputs"])
except Exception as error:
    raise SystemExit(f"Generation failed: {error}") from error

Voice Design API — Frequently asked questions

What is the Voice Design API?

Voice Design is a MiniMax model for audio generation, exposed as a REST API on WaveSpeedAI. MiniMax Voice Design generates natural voices from textual descriptions - no cloning - lets you set tone, accent and personality. 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 Voice Design 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 result endpoint starting around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. The playground generates production-oriented Python, JavaScript, and cURL examples with timeouts, transient-error handling, and safe GET retries. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/minimax/minimax-voice-design.

How much does Voice Design cost per run?

Voice Design starts at $0.50 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 Voice Design accept?

Key inputs: `prompt`, `custom_voice_id`, `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/minimax/minimax-voice-design.

How long does Voice Design take to generate?

Average end-to-end generation time on WaveSpeedAI is around 22 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Voice Design outputs commercially?

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