├── BigVGAN ├── Export_BigVGAN.py ├── Optimize_ONNX.py └── modeling_modified │ ├── act.py │ ├── bigvgan.py │ ├── filter.py │ └── resample.py ├── F5_TTS ├── Export_F5.py ├── F5-TTS-ONNX-Inference.py ├── Optimize_ONNX.py ├── Optimize_ONNX_DML.py ├── STFT_Process.py ├── export_windows.bat └── modeling_modified │ ├── F5 │ ├── dit.py │ ├── fp16 │ │ └── modules.py │ └── modules.py │ └── vocos │ ├── heads.py │ ├── models.py │ ├── modules.py │ └── pretrained.py ├── IndexTTS ├── Export_IndexTTS.py ├── Inference_IndexTTS_ONNX.py ├── Optimize_ONNX.py ├── STFT_Process.py ├── example │ └── zh.wav └── modeling_modified │ ├── act.py │ ├── filter.py │ ├── models.py │ └── resample.py ├── Kani_TTS ├── Export_Kani_TTS.py ├── Inference_Kani_TTS_ONNX.py ├── Optimize_ONNX.py └── modeling_modified │ ├── audio_codec.py │ └── common.py ├── LICENSE └── README.md /BigVGAN/Export_BigVGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/Export_BigVGAN.py -------------------------------------------------------------------------------- /BigVGAN/Optimize_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/Optimize_ONNX.py -------------------------------------------------------------------------------- /BigVGAN/modeling_modified/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/modeling_modified/act.py -------------------------------------------------------------------------------- /BigVGAN/modeling_modified/bigvgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/modeling_modified/bigvgan.py -------------------------------------------------------------------------------- /BigVGAN/modeling_modified/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/modeling_modified/filter.py -------------------------------------------------------------------------------- /BigVGAN/modeling_modified/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/BigVGAN/modeling_modified/resample.py -------------------------------------------------------------------------------- /F5_TTS/Export_F5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/Export_F5.py -------------------------------------------------------------------------------- /F5_TTS/F5-TTS-ONNX-Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/F5-TTS-ONNX-Inference.py -------------------------------------------------------------------------------- /F5_TTS/Optimize_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/Optimize_ONNX.py -------------------------------------------------------------------------------- /F5_TTS/Optimize_ONNX_DML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/Optimize_ONNX_DML.py -------------------------------------------------------------------------------- /F5_TTS/STFT_Process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/STFT_Process.py -------------------------------------------------------------------------------- /F5_TTS/export_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/export_windows.bat -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/F5/dit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/F5/dit.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/F5/fp16/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/F5/fp16/modules.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/F5/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/F5/modules.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/vocos/heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/vocos/heads.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/vocos/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/vocos/models.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/vocos/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/vocos/modules.py -------------------------------------------------------------------------------- /F5_TTS/modeling_modified/vocos/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/F5_TTS/modeling_modified/vocos/pretrained.py -------------------------------------------------------------------------------- /IndexTTS/Export_IndexTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/Export_IndexTTS.py -------------------------------------------------------------------------------- /IndexTTS/Inference_IndexTTS_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/Inference_IndexTTS_ONNX.py -------------------------------------------------------------------------------- /IndexTTS/Optimize_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/Optimize_ONNX.py -------------------------------------------------------------------------------- /IndexTTS/STFT_Process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/STFT_Process.py -------------------------------------------------------------------------------- /IndexTTS/example/zh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/example/zh.wav -------------------------------------------------------------------------------- /IndexTTS/modeling_modified/act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/modeling_modified/act.py -------------------------------------------------------------------------------- /IndexTTS/modeling_modified/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/modeling_modified/filter.py -------------------------------------------------------------------------------- /IndexTTS/modeling_modified/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/modeling_modified/models.py -------------------------------------------------------------------------------- /IndexTTS/modeling_modified/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/IndexTTS/modeling_modified/resample.py -------------------------------------------------------------------------------- /Kani_TTS/Export_Kani_TTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/Kani_TTS/Export_Kani_TTS.py -------------------------------------------------------------------------------- /Kani_TTS/Inference_Kani_TTS_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/Kani_TTS/Inference_Kani_TTS_ONNX.py -------------------------------------------------------------------------------- /Kani_TTS/Optimize_ONNX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/Kani_TTS/Optimize_ONNX.py -------------------------------------------------------------------------------- /Kani_TTS/modeling_modified/audio_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/Kani_TTS/modeling_modified/audio_codec.py -------------------------------------------------------------------------------- /Kani_TTS/modeling_modified/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/Kani_TTS/modeling_modified/common.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DakeQQ/Text-to-Speech-TTS-ONNX/HEAD/README.md --------------------------------------------------------------------------------