88e07487ee
- Added generate_stream() method for token-by-token streaming - Added generate_and_play() method for real-time playback - Added decode_chunk() to ncodec codec - First audio chunk in ~180ms (390% faster than non-streaming) - Updated README with streaming documentation
31 lines
826 B
TOML
31 lines
826 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "FastNeuTTS"
|
|
version = "0.0.11"
|
|
authors = [
|
|
{ name="Yatharth Sharma", email="yatharthsharma3501@gmail.com" },
|
|
]
|
|
description = "High quality and Fast TTS with MiraTTS"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = [
|
|
"lmdeploy",
|
|
"librosa",
|
|
"fastaudiosr @ git+https://github.com/ysharma3501/FlashSR.git",
|
|
"ncodec @ git+https://github.com/ysharma3501/FastBiCodec.git",
|
|
"einops",
|
|
"onnxruntime-gpu"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/ysharma3501/MiraTTS"
|
|
Issues = "https://github.com/ysharma3501/MiraTTS/issues"
|