mlx-community/chatterbox-fp16

Model

5

stars

14

commits

3

repos using this model

1

linked in READMEs

Jan 5, 2026

updated

chatterbox
mlx
mlx-audio
safetensors
speech
speech generation
text-to-speech
tts
voice cloning
Browse cluster: Multilingual Text-to-Speech Systems

README

mlx-community/chatterbox-fp16

This model was converted to MLX format from ResembleAI/chatterbox using mlx-audio version 0.2.7. Refer to the original model card for more details on the model.

Use with mlx

pip install -U mlx-audio

CLI Example:

python -m mlx_audio.tts.generate --model mlx-community/chatterbox-fp16 --text "Hello, this is a test."

Python Example:

from mlx_audio.tts.utils import load_model
from mlx_audio.tts.generate import generate_audio
model = load_model("mlx-community/chatterbox-fp16")
generate_audio(
    model=model, text="Hello, this is a test.",
    file_prefix="test_audio",
)

Voice Cloning:

from mlx_audio.tts.generate import generate_audio

generate_audio(
    text="Hello, this is a test of Chatterbox TTS.",
    model="mlx-community/chatterbox-fp16",
    ref_audio="path_to_file.wav",
    ref_text="Text transcript", # Optional
    file_prefix="vc_output",
)

Multilingual Quickstart

Generate speech in 23 languages by specifying the lang_code parameter. The model automatically handles pronunciation, intonation, and language-specific phonemes.

from mlx_audio.tts.generate import generate_audio

generate_audio(
    text="Olá, tudo bem?",
    model="mlx-community/chatterbox-fp16",
    lang_code="pt",
    file_prefix="multilingual_output",
)

Supported Languages

CodeLanguageCodeLanguageCodeLanguage
arArabicheHebrewnoNorwegian
daDanishhiHindiplPolish
deGermanitItalianptPortuguese
elGreekjaJapaneseruRussian
enEnglishkoKoreansvSwedish
esSpanishmsMalayswSwahili
fiFinnishnlDutchtrTurkish
frFrenchzhChinese

Contributors

prince-canuma

14 commits

mlx-community/chatterbox-fp16

Model

5

stars

14

commits

3

repos using this model

1

linked in READMEs

Jan 5, 2026

updated

chatterbox
mlx
mlx-audio
safetensors
speech
speech generation
text-to-speech
tts
voice cloning
Browse cluster: Multilingual Text-to-Speech Systems

README

mlx-community/chatterbox-fp16

This model was converted to MLX format from ResembleAI/chatterbox using mlx-audio version 0.2.7. Refer to the original model card for more details on the model.

Use with mlx

pip install -U mlx-audio

CLI Example:

python -m mlx_audio.tts.generate --model mlx-community/chatterbox-fp16 --text "Hello, this is a test."

Python Example:

from mlx_audio.tts.utils import load_model
from mlx_audio.tts.generate import generate_audio
model = load_model("mlx-community/chatterbox-fp16")
generate_audio(
    model=model, text="Hello, this is a test.",
    file_prefix="test_audio",
)

Voice Cloning:

from mlx_audio.tts.generate import generate_audio

generate_audio(
    text="Hello, this is a test of Chatterbox TTS.",
    model="mlx-community/chatterbox-fp16",
    ref_audio="path_to_file.wav",
    ref_text="Text transcript", # Optional
    file_prefix="vc_output",
)

Multilingual Quickstart

Generate speech in 23 languages by specifying the lang_code parameter. The model automatically handles pronunciation, intonation, and language-specific phonemes.

from mlx_audio.tts.generate import generate_audio

generate_audio(
    text="Olá, tudo bem?",
    model="mlx-community/chatterbox-fp16",
    lang_code="pt",
    file_prefix="multilingual_output",
)

Supported Languages

CodeLanguageCodeLanguageCodeLanguage
arArabicheHebrewnoNorwegian
daDanishhiHindiplPolish
deGermanitItalianptPortuguese
elGreekjaJapaneseruRussian
enEnglishkoKoreansvSwedish
esSpanishmsMalayswSwahili
fiFinnishnlDutchtrTurkish
frFrenchzhChinese

Contributors

prince-canuma

14 commits