Views
No views yet
Supertone/supertonic-2 using mlx-audio version 0.2.8.pip install -U mlx-audiomlx_audio.tts.generate --model mlx-community/supertonic-2 --text "Hello, this is a test." --voice M11from mlx_audio.tts.utils import load_model
2
3model = load_model("mlx-community/supertonic-2")
4for result in model.generate("Hello, this is a test.", voice="M1"):
5 print(f"Generated {result.audio_duration} of audio")