qwen-audio-clone
Alibaba Bailian qwen3-tts voice cloning. Upload a clean voice sample to clone a custom voice usable in subsequent TTS calls.
Alibaba Bailian qwen3-tts voice cloning. Upload a clean voice sample to clone a custom voice usable in subsequent TTS calls.
Overview
| Field | Value |
|---|---|
| Model ID | qwen-audio-clone |
| CLI | dlazy qwen-audio-clone |
| MCP | qwen-audio-clone (Claude Code surfaces this as mcp__dlazy__qwen-audio-clone) |
| Type | audio |
| Execution | Async task; the CLI polls until completion (--no-wait returns generateId immediately) |
| Batch | Supports --batch <n> parallel fan-out |
Parameters
| Arg | Type | Required | Notes |
|---|---|---|---|
audio_url | url | Yes | Audio URL; audio (accepts URL, local path, or data: URL) |
name | string | Yes | Name |
description | string | No | Description; default "" |
--input @file.jsonor--input '{...}'can supply all args at once; flags take precedence over--inputkeys.
CLI Examples
dlazy qwen-audio-clone --help
dlazy qwen-audio-clone --audio_url "https://example.com/source.mp3" --name "value"
dlazy qwen-audio-clone --audio_url "./local-audio.mp3" --name "value"
dlazy qwen-audio-clone --audio_url "https://example.com/source.mp3" --name "value" --dry-run
dlazy qwen-audio-clone --audio_url "https://example.com/source.mp3" --name "value" --no-wait
dlazy qwen-audio-clone --audio_url "https://example.com/source.mp3" --name "value" --batch 4Compose with a pipeline
dlazy gemini-2.5-tts --prompt "reference voice line" \
| dlazy qwen-audio-clone --audio_url -MCP
MCP is consumed by AI clients, not handwritten. Once dLazy is registered as an MCP server the tool appears in the client's tool list — Claude Code surfaces it as mcp__dlazy__qwen-audio-clone; generic clients (e.g. OpenClaw) call it as qwen-audio-clone.
See MCP setup for how to add the server.
Output
{
"outputs": [
{ "type": "audio", "id": "o_...", "url": "https://files.dlazy.com/result.mp3", "mimeType": "audio/mpeg" }
]
}Media tools emit image / video / audio / file outputs. Use --output url to print only the URLs on stdout.