supertonic
Lightning-Fast, On-Device, Multilingual TTS — running natively via ONNX.
File Explorer
Download Latest Version (.zip)- assets
- CMakeLists.txt
- example_onnx.cpp
- helper.cpp
- helper.h
- README.md
- .gitignore
- assets
- ExampleONNX.cs
- Helper.cs
- README.md
- Supertonic.csproj
- helper.dart
- main.dart
- Flutter-Debug.xcconfig
- Flutter-Release.xcconfig
- GeneratedPluginRegistrant.swift
- app_icon_1024.png
- app_icon_128.png
- app_icon_16.png
- app_icon_256.png
- app_icon_32.png
- app_icon_512.png
- app_icon_64.png
- Contents.json
- MainMenu.xib
- AppInfo.xcconfig
- Debug.xcconfig
- Release.xcconfig
- Warnings.xcconfig
- AppDelegate.swift
- DebugProfile.entitlements
- Info.plist
- MainFlutterWindow.swift
- Release.entitlements
- RunnerTests.swift
- .gitignore
- Podfile
- Podfile.lock
- .gitignore
- .metadata
- analysis_options.yaml
- assets
- pubspec.lock
- pubspec.yaml
- README.md
- .gitignore
- assets
- example_onnx.go
- go.mod
- go.sum
- helper.go
- README.md
- model_size_comparison.png
- runtime_cpu_gpu_latency_memory.png
- s3_vs_measured_wer_range.png
- s3_vs_measured_wer_range_voxcpm2.png
- supertonic2_vs_3_comparison.png
- Supertonic3_HeroImage.png
- supertonic_preview_0.1.jpg
- voicebuilder_img.png
- App.swift
- AudioPlayer.swift
- ContentView.swift
- Info.plist
- project.yml
- TTSService.swift
- TTSViewModel.swift
- README.md
- .gitignore
- assets
- ExampleONNX.java
- Helper.java
- pom.xml
- README.md
- assets
- example_onnx.js
- helper.js
- package.json
- README.md
- assets
- example_onnx.py
- example_pypi.py
- helper.py
- pyproject.toml
- README.md
- requirements.txt
- uv.lock
- example_onnx.rs
- helper.rs
- .gitignore
- assets
- Cargo.toml
- README.md
- ExampleONNX.swift
- Helper.swift
- .gitignore
- assets
- Package.resolved
- Package.swift
- README.md
- .gitignore
- assets
- helper.js
- index.html
- main.js
- package.json
- README.md
- style.css
- vite.config.js
- .gitattributes
- .gitignore
- LICENSE
- README.md
- test_all.sh
# Installation Guide
git clone https://github.com/supertone-inc/supertonic
Downloads the entire project code from GitHub to your computer.
cd supertonic
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install supertonic
Installs the package published on PyPI directly — no need to clone the source.
pip install 'supertonic[serve]'
Installs the package published on PyPI directly — no need to clone the source.
Pulled directly from this repo's README.
3. CMake
Mediumcmake .. && cmake --build . --config Release
Analyzes the source code and generates build configuration files (must be run inside the build folder).
Pulled directly from this repo's README.
4. .NET
Mediumdotnet restore
Downloads the packages the project depends on.
dotnet run
Builds the project and runs it immediately.
Pulled directly from this repo's README.
5. Maven (Java)
Medium- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java projects.
- Maven The build tool used for the mvn command.
mvn clean install
Installs dependencies and builds the project using Maven.
mvn exec:java
Installs dependencies and builds the project using Maven.
Pulled directly from this repo's README.
6. Node.js
Easynpm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
npm run dev
Starts the development/run server.
Pulled directly from this repo's README.
7. Python
Easypip install supertonic
Installs the package published on PyPI directly — no need to clone the source.
pip install 'supertonic[serve]'
Installs the package published on PyPI directly — no need to clone the source.
Pulled directly from this repo's README.
8. Go
Mediumgo run example_onnx.go helper.go
Runs the Go program directly without a separate build step.
Pulled directly from this repo's README.
9. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
Pulled directly from this repo's README.
