The 'Chatter Box: Multilingual Text-to-Speech with Voice Cloning' workflow is designed to transform text into spoken audio across multiple languages using a cloned voice from a short audio sample. This workflow leverages the Chatter Box model, which is adept at voice cloning and multilingual text-to-speech synthesis. By using the **FL_ChatterboxMultilingualTTS** node, users can input a text prompt and select a target language for audio generation. The workflow begins with the **LoadAudio** node, where a short voice sample is uploaded to define the voice characteristics for cloning. The generated audio is then saved using the **SaveAudioMP3** node, allowing for easy access and sharing. This workflow is particularly useful for creating personalized multilingual audio content, making it a valuable tool for content creators, educators, and businesses aiming to reach a global audience.
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
GET https://comfy.org/workflows/download/20ff6cad791c.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "Chatter Box: Multilingual Text-to-Speech with Voice Cloning" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("audio-chatterbox_tts_multilingual_api.json")
job = client.run(wf)
for output in job.get_outputs("3"): # SaveAudioMP3
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














