Instructions to use LunaFox/DraculaFlow-TTS-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use LunaFox/DraculaFlow-TTS-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir DraculaFlow-TTS-mlx LunaFox/DraculaFlow-TTS-mlx
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
File size: 1,674 Bytes
e7fd1e5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ---
base_model: LunaFox/DraculaFlow-TTS
language:
- en
library_name: mlx
license: apache-2.0
pipeline_tag: text-to-speech
tags:
- mlx
- text-to-speech
- audio
- tts
---
# DraculaFlow-TTS-mlx
This repository contains the MLX-converted weights for **DraculaFlow-TTS**, optimized for fast inference on Apple Silicon using [mlx-audio](https://github.com/Blaizzy/mlx-audio).
* **Original Hugging Face Model**: [LunaFox/DraculaFlow-TTS](https://huggingface.co/LunaFox/DraculaFlow-TTS)
---
## Installation
Install `mlx-audio`:
```bash
pip install mlx-audio
```
---
## Usage
### 1. Command Line Interface (CLI)
Generate audio clips directly from the terminal using `mlx_audio.tts.generate`:
```bash
python -m mlx_audio.tts.generate \
--model LunaFox/DraculaFlow-TTS-mlx \
--text "We are smoking joint out of a custom carved bong." \
--voice dracula_flow \
--output_path ./output.wav
```
To play the audio immediately upon generation, add the `--play` flag:
```bash
python -m mlx_audio.tts.generate \
--model LunaFox/DraculaFlow-TTS-mlx \
--text "This shit ain't nothing to me man." \
--voice dracula_flow \
--play
```
### 2. Python API
You can also generate audio clips within a Python script:
```python
from mlx_audio.tts.generate import generate_audio
generate_audio(
text="We are smoking joint out of a custom carved bong.",
model="LunaFox/DraculaFlow-TTS-mlx",
voice="dracula_flow",
output_path="./output.wav",
)
```
---
## Details
* **Architecture**: Qwen3 TTS (`qwen3_tts`)
* **Speaker Voice ID**: `dracula_flow`
* **Framework**: [MLX](https://github.com/ml-explore/mlx) / [mlx-audio](https://github.com/Blaizzy/mlx-audio)
|