Views
No views yet
HumeAI/mlx-tada-1b using mlx-audio version 0.2.8.pip install -U mlx-audiopython -m mlx_audio.tts.generate --model mlx-community/tada-tts --text "Hello, this is a test."1from mlx_audio.tts.utils import load_model
2from mlx_audio.tts.generate import generate_audio
3
4model = load_model("mlx-community/tada-tts")
5generate_audio(
6 model=model,
7 text="Hello, this is a test.",
8 ref_audio="path_to_audio.wav",
9 file_prefix="test_audio",
10)
11