Instructions to use Supertone/supertonic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Supertonic
How to use Supertone/supertonic with Supertonic:
from supertonic import TTS tts = TTS(auto_download=True) style = tts.get_voice_style(voice_name="M1") text = "The train delay was announced at 4:45 PM on Wed, Apr 3, 2024 due to track maintenance." wav, duration = tts.synthesize(text, voice_style=style) tts.save_audio(wav, "output.wav")
- Notebooks
- Google Colab
- Kaggle
add flutter
Browse files
README.md
CHANGED
|
@@ -51,6 +51,7 @@ We provide ready-to-use TTS inference examples across multiple ecosystems:
|
|
| 51 |
| [**Swift**] | `swift/` | macOS applications |
|
| 52 |
| [**iOS**] | `ios/` | Native iOS apps |
|
| 53 |
| [**Rust**] | `rust/` | Memory-safe systems |
|
|
|
|
| 54 |
|
| 55 |
> For detailed usage instructions, please refer to the README.md in each language directory.
|
| 56 |
|
|
|
|
| 51 |
| [**Swift**] | `swift/` | macOS applications |
|
| 52 |
| [**iOS**] | `ios/` | Native iOS apps |
|
| 53 |
| [**Rust**] | `rust/` | Memory-safe systems |
|
| 54 |
+
| [**Flutter**] | `flutter/` | Cross-platform apps |
|
| 55 |
|
| 56 |
> For detailed usage instructions, please refer to the README.md in each language directory.
|
| 57 |
|