react-native-sherpa-onnx 0.3.6 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (228) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +92 -21
  3. package/SherpaOnnx.podspec +3 -0
  4. package/THIRD_PARTY_LICENSES/README.md +62 -0
  5. package/THIRD_PARTY_LICENSES/ffmpeg.txt +502 -0
  6. package/THIRD_PARTY_LICENSES/libarchive.txt +65 -0
  7. package/THIRD_PARTY_LICENSES/nvidia_omla.txt +181 -0
  8. package/THIRD_PARTY_LICENSES/onnxruntime.txt +21 -0
  9. package/THIRD_PARTY_LICENSES/opus.txt +44 -0
  10. package/THIRD_PARTY_LICENSES/sherpa-onnx.txt +201 -0
  11. package/THIRD_PARTY_LICENSES/shine.txt +482 -0
  12. package/THIRD_PARTY_LICENSES/zstd.txt +30 -0
  13. package/android/build.gradle +7 -3
  14. package/android/prebuilt-download.gradle +344 -152
  15. package/android/prebuilt-versions.gradle +1 -1
  16. package/android/src/main/assets/model_licenses/asr-models-license-status.csv +409 -0
  17. package/android/src/main/assets/model_licenses/qnn-asr-models-license-status.csv +695 -0
  18. package/android/src/main/assets/model_licenses/tts-models-license-status.csv +596 -0
  19. package/android/src/main/cpp/CMakeLists.txt +28 -10
  20. package/android/src/main/cpp/jni/archive/sherpa-onnx-archive-helper.cpp +2 -2
  21. package/android/src/main/cpp/jni/audio/sherpa-onnx-audio-convert-jni.cpp +268 -2
  22. package/android/src/main/cpp/jni/model_detect/sherpa-onnx-model-detect-tts.cpp +37 -6
  23. package/android/src/main/cpp/jni/model_detect/sherpa-onnx-model-detect.h +9 -1
  24. package/android/src/main/cpp/jni/model_detect/sherpa-onnx-tts-wrapper.cpp +7 -0
  25. package/android/src/main/cpp/jni/model_detect/sherpa-onnx-validate-tts.cpp +18 -2
  26. package/android/src/main/java/com/sherpaonnx/SherpaOnnxArchiveHelper.kt +40 -10
  27. package/android/src/main/java/com/sherpaonnx/SherpaOnnxModule.kt +99 -0
  28. package/android/src/main/java/com/sherpaonnx/SherpaOnnxOnlineSttHelper.kt +4 -1
  29. package/android/src/main/java/com/sherpaonnx/SherpaOnnxTtsHelper.kt +127 -97
  30. package/ios/Resources/model_licenses/asr-models-license-status.csv +409 -0
  31. package/ios/Resources/model_licenses/qnn-asr-models-license-status.csv +695 -0
  32. package/ios/Resources/model_licenses/tts-models-license-status.csv +596 -0
  33. package/ios/SherpaOnnx+OnlineSTT.mm +2 -0
  34. package/ios/SherpaOnnx+PcmLiveStream.mm +2 -29
  35. package/ios/SherpaOnnx+TTS.mm +179 -20
  36. package/ios/SherpaOnnx.mm +54 -0
  37. package/ios/SherpaOnnxAudioConvert.h +10 -0
  38. package/ios/SherpaOnnxAudioConvert.mm +257 -1
  39. package/ios/archive/sherpa-onnx-archive-helper.h +3 -0
  40. package/ios/archive/sherpa-onnx-archive-helper.mm +39 -6
  41. package/ios/model_detect/sherpa-onnx-model-detect-tts.mm +49 -6
  42. package/ios/model_detect/sherpa-onnx-model-detect.h +9 -1
  43. package/ios/model_detect/sherpa-onnx-validate-tts.mm +18 -2
  44. package/ios/online_stt/sherpa-onnx-online-stt-wrapper.h +1 -0
  45. package/ios/online_stt/sherpa-onnx-online-stt-wrapper.mm +4 -0
  46. package/ios/tts/sherpa-onnx-tts-wrapper.h +37 -0
  47. package/ios/tts/sherpa-onnx-tts-wrapper.mm +158 -3
  48. package/lib/module/NativeSherpaOnnx.js.map +1 -1
  49. package/lib/module/audio/index.js +8 -0
  50. package/lib/module/audio/index.js.map +1 -1
  51. package/lib/module/download/ModelDownloadManager.js +10 -929
  52. package/lib/module/download/ModelDownloadManager.js.map +1 -1
  53. package/lib/module/download/activeModelOperations.js +26 -0
  54. package/lib/module/download/activeModelOperations.js.map +1 -0
  55. package/lib/module/download/background-downloader-types.js +2 -0
  56. package/lib/module/download/background-downloader-types.js.map +1 -0
  57. package/lib/module/download/bulkPurge.js +72 -0
  58. package/lib/module/download/bulkPurge.js.map +1 -0
  59. package/lib/module/download/checksumPrompt.js +19 -0
  60. package/lib/module/download/checksumPrompt.js.map +1 -0
  61. package/lib/module/download/constants.js +7 -0
  62. package/lib/module/download/constants.js.map +1 -0
  63. package/lib/module/download/downloadEvents.js +35 -0
  64. package/lib/module/download/downloadEvents.js.map +1 -0
  65. package/lib/module/download/downloadTask.js +438 -0
  66. package/lib/module/download/downloadTask.js.map +1 -0
  67. package/lib/module/download/ensureModel.js +89 -0
  68. package/lib/module/download/ensureModel.js.map +1 -0
  69. package/lib/module/download/index.js +4 -4
  70. package/lib/module/download/index.js.map +1 -1
  71. package/lib/module/download/localModels.js +151 -0
  72. package/lib/module/download/localModels.js.map +1 -0
  73. package/lib/module/download/modelExtraction.js +174 -0
  74. package/lib/module/download/modelExtraction.js.map +1 -0
  75. package/lib/module/download/paths.js +98 -0
  76. package/lib/module/download/paths.js.map +1 -0
  77. package/lib/module/download/postDownloadProcessing.js +206 -0
  78. package/lib/module/download/postDownloadProcessing.js.map +1 -0
  79. package/lib/module/download/protectedModelKeys.js +31 -0
  80. package/lib/module/download/protectedModelKeys.js.map +1 -0
  81. package/lib/module/download/registry.js +268 -0
  82. package/lib/module/download/registry.js.map +1 -0
  83. package/lib/module/download/retry.js +59 -0
  84. package/lib/module/download/retry.js.map +1 -0
  85. package/lib/module/download/types.js +17 -0
  86. package/lib/module/download/types.js.map +1 -0
  87. package/lib/module/download/validation.js +101 -5
  88. package/lib/module/download/validation.js.map +1 -1
  89. package/lib/module/{download → extraction}/extractTarBz2.js +3 -1
  90. package/lib/module/extraction/extractTarBz2.js.map +1 -0
  91. package/lib/module/{download → extraction}/extractTarZst.js +3 -1
  92. package/lib/module/extraction/extractTarZst.js.map +1 -0
  93. package/lib/module/extraction/index.js +3 -4
  94. package/lib/module/extraction/index.js.map +1 -1
  95. package/lib/module/index.js +1 -1
  96. package/lib/module/index.js.map +1 -1
  97. package/lib/module/licenses.js +63 -0
  98. package/lib/module/licenses.js.map +1 -0
  99. package/lib/module/stt/index.js +16 -2
  100. package/lib/module/stt/index.js.map +1 -1
  101. package/lib/module/stt/streaming.js +2 -0
  102. package/lib/module/stt/streaming.js.map +1 -1
  103. package/lib/module/stt/streamingTypes.js.map +1 -1
  104. package/lib/module/stt/types.js.map +1 -1
  105. package/lib/module/tts/index.js +21 -3
  106. package/lib/module/tts/index.js.map +1 -1
  107. package/lib/module/tts/streaming.js +5 -1
  108. package/lib/module/tts/streaming.js.map +1 -1
  109. package/lib/module/tts/types.js +4 -1
  110. package/lib/module/tts/types.js.map +1 -1
  111. package/lib/module/utils.js +16 -1
  112. package/lib/module/utils.js.map +1 -1
  113. package/lib/typescript/src/NativeSherpaOnnx.d.ts +34 -6
  114. package/lib/typescript/src/NativeSherpaOnnx.d.ts.map +1 -1
  115. package/lib/typescript/src/audio/index.d.ts +10 -0
  116. package/lib/typescript/src/audio/index.d.ts.map +1 -1
  117. package/lib/typescript/src/download/ModelDownloadManager.d.ts +11 -108
  118. package/lib/typescript/src/download/ModelDownloadManager.d.ts.map +1 -1
  119. package/lib/typescript/src/download/activeModelOperations.d.ts +6 -0
  120. package/lib/typescript/src/download/activeModelOperations.d.ts.map +1 -0
  121. package/lib/typescript/src/download/background-downloader-types.d.ts +64 -0
  122. package/lib/typescript/src/download/background-downloader-types.d.ts.map +1 -0
  123. package/lib/typescript/src/download/bulkPurge.d.ts +14 -0
  124. package/lib/typescript/src/download/bulkPurge.d.ts.map +1 -0
  125. package/lib/typescript/src/download/checksumPrompt.d.ts +3 -0
  126. package/lib/typescript/src/download/checksumPrompt.d.ts.map +1 -0
  127. package/lib/typescript/src/download/constants.d.ts +5 -0
  128. package/lib/typescript/src/download/constants.d.ts.map +1 -0
  129. package/lib/typescript/src/download/downloadEvents.d.ts +6 -0
  130. package/lib/typescript/src/download/downloadEvents.d.ts.map +1 -0
  131. package/lib/typescript/src/download/downloadTask.d.ts +30 -0
  132. package/lib/typescript/src/download/downloadTask.d.ts.map +1 -0
  133. package/lib/typescript/src/download/ensureModel.d.ts +26 -0
  134. package/lib/typescript/src/download/ensureModel.d.ts.map +1 -0
  135. package/lib/typescript/src/download/index.d.ts +7 -7
  136. package/lib/typescript/src/download/index.d.ts.map +1 -1
  137. package/lib/typescript/src/download/localModels.d.ts +15 -0
  138. package/lib/typescript/src/download/localModels.d.ts.map +1 -0
  139. package/lib/typescript/src/download/modelExtraction.d.ts +36 -0
  140. package/lib/typescript/src/download/modelExtraction.d.ts.map +1 -0
  141. package/lib/typescript/src/download/paths.d.ts +28 -0
  142. package/lib/typescript/src/download/paths.d.ts.map +1 -0
  143. package/lib/typescript/src/download/postDownloadProcessing.d.ts +19 -0
  144. package/lib/typescript/src/download/postDownloadProcessing.d.ts.map +1 -0
  145. package/lib/typescript/src/download/protectedModelKeys.d.ts +6 -0
  146. package/lib/typescript/src/download/protectedModelKeys.d.ts.map +1 -0
  147. package/lib/typescript/src/download/registry.d.ts +14 -0
  148. package/lib/typescript/src/download/registry.d.ts.map +1 -0
  149. package/lib/typescript/src/download/retry.d.ts +15 -0
  150. package/lib/typescript/src/download/retry.d.ts.map +1 -0
  151. package/lib/typescript/src/download/types.d.ts +96 -0
  152. package/lib/typescript/src/download/types.d.ts.map +1 -0
  153. package/lib/typescript/src/download/validation.d.ts +19 -0
  154. package/lib/typescript/src/download/validation.d.ts.map +1 -1
  155. package/lib/typescript/src/extraction/extractTarBz2.d.ts.map +1 -0
  156. package/lib/typescript/src/extraction/extractTarZst.d.ts.map +1 -0
  157. package/lib/typescript/src/index.d.ts +1 -0
  158. package/lib/typescript/src/index.d.ts.map +1 -1
  159. package/lib/typescript/src/licenses.d.ts +10 -0
  160. package/lib/typescript/src/licenses.d.ts.map +1 -0
  161. package/lib/typescript/src/stt/index.d.ts +4 -1
  162. package/lib/typescript/src/stt/index.d.ts.map +1 -1
  163. package/lib/typescript/src/stt/streaming.d.ts.map +1 -1
  164. package/lib/typescript/src/stt/streamingTypes.d.ts +5 -0
  165. package/lib/typescript/src/stt/streamingTypes.d.ts.map +1 -1
  166. package/lib/typescript/src/stt/types.d.ts +3 -1
  167. package/lib/typescript/src/stt/types.d.ts.map +1 -1
  168. package/lib/typescript/src/tts/index.d.ts +4 -2
  169. package/lib/typescript/src/tts/index.d.ts.map +1 -1
  170. package/lib/typescript/src/tts/streaming.d.ts.map +1 -1
  171. package/lib/typescript/src/tts/types.d.ts +12 -6
  172. package/lib/typescript/src/tts/types.d.ts.map +1 -1
  173. package/lib/typescript/src/utils.d.ts +5 -0
  174. package/lib/typescript/src/utils.d.ts.map +1 -1
  175. package/package.json +6 -1
  176. package/scripts/{check-model-csvs.sh → ci/check-model-csvs.sh} +9 -2
  177. package/scripts/ci/collect_all_sherpa_model_streams.sh +101 -0
  178. package/scripts/ci/collect_one_sherpa_release_stream.sh +189 -0
  179. package/scripts/ci/sherpa_asr_model_release_streams.json +21 -0
  180. package/scripts/ci/sherpa_tts_model_release_streams.json +13 -0
  181. package/scripts/ci/update_model_license_csv.sh +765 -0
  182. package/scripts/setup-ios-framework.sh +14 -11
  183. package/scripts/update_commercial_use.js +73 -0
  184. package/src/NativeSherpaOnnx.ts +37 -6
  185. package/src/audio/index.ts +20 -0
  186. package/src/download/ModelDownloadManager.ts +57 -1343
  187. package/src/download/activeModelOperations.ts +38 -0
  188. package/src/download/background-downloader-types.ts +73 -0
  189. package/src/download/bulkPurge.ts +102 -0
  190. package/src/download/checksumPrompt.ts +25 -0
  191. package/src/download/constants.ts +5 -0
  192. package/src/download/downloadEvents.ts +55 -0
  193. package/src/download/downloadTask.ts +565 -0
  194. package/src/download/ensureModel.ts +124 -0
  195. package/src/download/index.ts +21 -4
  196. package/src/download/localModels.ts +234 -0
  197. package/src/download/modelExtraction.ts +244 -0
  198. package/src/download/paths.ts +134 -0
  199. package/src/download/postDownloadProcessing.ts +292 -0
  200. package/src/download/protectedModelKeys.ts +30 -0
  201. package/src/download/registry.ts +405 -0
  202. package/src/download/retry.ts +76 -0
  203. package/src/download/types.ts +120 -0
  204. package/src/download/validation.ts +114 -8
  205. package/src/{download → extraction}/extractTarBz2.ts +3 -1
  206. package/src/{download → extraction}/extractTarZst.ts +3 -1
  207. package/src/extraction/index.ts +3 -7
  208. package/src/index.tsx +1 -0
  209. package/src/licenses.ts +100 -0
  210. package/src/stt/index.ts +20 -2
  211. package/src/stt/streaming.ts +3 -0
  212. package/src/stt/streamingTypes.ts +5 -0
  213. package/src/stt/types.ts +3 -1
  214. package/src/tts/index.ts +33 -2
  215. package/src/tts/streaming.ts +12 -0
  216. package/src/tts/types.ts +15 -5
  217. package/src/utils.ts +22 -1
  218. package/third_party/sherpa-onnx-prebuilt/ANDROID_RELEASE_TAG +1 -1
  219. package/third_party/sherpa-onnx-prebuilt/IOS_RELEASE_TAG +1 -1
  220. package/android/src/main/cpp/jni/tts/sherpa-onnx-tts-zipvoice-jni.cpp +0 -301
  221. package/android/src/main/java/com/sherpaonnx/ZipvoiceTtsWrapper.kt +0 -187
  222. package/lib/module/download/extractTarBz2.js.map +0 -1
  223. package/lib/module/download/extractTarZst.js.map +0 -1
  224. package/lib/typescript/src/download/extractTarBz2.d.ts.map +0 -1
  225. package/lib/typescript/src/download/extractTarZst.d.ts.map +0 -1
  226. package/scripts/check-qnn-support.sh +0 -78
  227. /package/lib/typescript/src/{download → extraction}/extractTarBz2.d.ts +0 -0
  228. /package/lib/typescript/src/{download → extraction}/extractTarZst.d.ts +0 -0
@@ -0,0 +1,596 @@
1
+ asset_name,license_type,commercial_use,confidence,detection_source,license_file
2
+ vits-vctk.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-vctk
3
+ espeak-ng-data.tar.bz2,mit,yes,high,manual,https://github.com/rhasspy/piper
4
+ vits-piper-en_GB-sweetbbak-amy.tar.bz2,mit,yes,high,manual,https://github.com/rhasspy/piper
5
+ vits-coqui-en-ljspeech.tar.bz2,apache-2.0,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
6
+ vits-coqui-en-ljspeech-neon.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
7
+ vits-coqui-en-vctk.tar.bz2,apache-2.0,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
8
+ vits-coqui-da-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
9
+ vits-coqui-sl-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
10
+ vits-coqui-lt-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
11
+ vits-coqui-de-css10.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
12
+ vits-coqui-bg-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
13
+ vits-coqui-fr-css10.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
14
+ vits-coqui-cs-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
15
+ vits-coqui-fi-css10.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
16
+ vits-coqui-sk-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
17
+ vits-coqui-hr-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
18
+ vits-coqui-ga-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
19
+ vits-coqui-et-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
20
+ vits-coqui-ro-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
21
+ vits-coqui-nl-css10.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
22
+ vits-coqui-pt-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
23
+ vits-coqui-bn-custom_female.tar.bz2,apache-2.0,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
24
+ vits-coqui-mt-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
25
+ vits-coqui-lv-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
26
+ vits-coqui-pl-mai_female.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
27
+ vits-coqui-es-css10.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
28
+ vits-coqui-sv-cv.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
29
+ vits-coqui-uk-mai.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/idiap/coqui-ai-TTS/blob/dev/TTS/.models.json
30
+ vits-piper-en_US-glados.tar.bz2,mit,yes,high,manual,https://github.com/dnhkng/GlaDOS/raw/main/models/glados.onnx
31
+ vits-piper-es-glados-medium.tar.bz2,mit,yes,high,manual,https://github.com/dnhkng/GlaDOS/raw/main/models/glados.onnx
32
+ vits-mms-nan.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
33
+ vits-mms-eng.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
34
+ vits-mms-spa.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
35
+ vits-mms-fra.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
36
+ vits-mms-tha.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
37
+ vits-mms-ukr.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
38
+ vits-mms-rus.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
39
+ vits-mms-deu.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/facebook/mms-tts/tree/main/models/nan
40
+ vits-piper-fa-haaniye_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/fa/haaniye_low/LICENSE
41
+ vits-mimic3-el_GR-rapunzelina_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/el_GR/rapunzelina_low/LICENSE
42
+ vits-mimic3-ko_KO-kss_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/ko_KO/kss_low/LICENSE
43
+ vits-mimic3-fa-haaniye_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/fa/haaniye_low/LICENSE
44
+ vits-mimic3-hu_HU-diana-majlinger_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/hu_HU/diana-majlinger_low/LICENSE
45
+ vits-mimic3-af_ZA-google-nwu_low.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/af_ZA/google-nwu_low/LICENSE
46
+ vits-mimic3-pl_PL-m-ailabs_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/pl_PL/m-ailabs_low/LICENSE
47
+ vits-mimic3-gu_IN-cmu-indic_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/gu_IN/cmu-indic_low/LICENSE
48
+ vits-mimic3-ne_NP-ne-google_low.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/ne_NP/ne-google_low/LICENSE
49
+ vits-mimic3-vi_VN-vais1000_low.tar.bz2,cc-by-4.0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/vi_VN/vais1000_low/LICENSE
50
+ vits-mimic3-fi_FI-harri-tapani-ylilammi_low.tar.bz2,cc0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/fi_FI/harri-tapani-ylilammi_low/LICENSE
51
+ vits-mimic3-bn-multi_low.tar.bz2,cc-by-4.0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/bn/multi_low/google/LICENSE
52
+ vits-mimic3-es_ES-m-ailabs_low.tar.bz2,bsd-3-clause,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/es_ES/m-ailabs_low/LICENSE
53
+ vits-mimic3-tn_ZA-google-nwu_low.tar.bz2,cc-by-4.0,yes,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/tn_ZA/google-nwu_low/LICENSE
54
+ vits-cantonese-hf-xiaomaiiwn.tar.bz2,no-license,no,high,manual,https://huggingface.co/csukuangfj/vits-cantonese-hf-xiaomaiiwn
55
+ vits-zh-aishell3.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/jackyqs/vits-aishell3-175-chinese
56
+ vits-icefall-zh-aishell3.tar.bz2,apache-2.0,yes,high,manual,https://www.openslr.org/93/
57
+ vits-ljs.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-ljs
58
+ vits-zh-hf-bronya.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
59
+ vits-zh-hf-echo.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
60
+ vits-zh-hf-abyssinvoker.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
61
+ vits-zh-hf-keqing.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
62
+ vits-zh-hf-doom.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
63
+ vits-zh-hf-eula.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
64
+ vits-zh-hf-theresa.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
65
+ vits-zh-hf-zenyatta.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/spaces/zomehwh/vits-models-genshin-bh3/tree/main
66
+ vits-zh-hf-fanchen-ZhiHuiLaoZhe_new.tar.bz2,no-license,no,high,manual,https://huggingface.co/spaces/lkz99/tts_model/tree/main
67
+ vits-zh-hf-fanchen-unity.tar.bz2,no-license,no,high,manual,https://huggingface.co/spaces/lkz99/tts_model/tree/main
68
+ vits-zh-hf-fanchen-C.tar.bz2,no-license,no,high,manual,https://huggingface.co/spaces/lkz99/tts_model/tree/main
69
+ vits-zh-hf-fanchen-ZhiHuiLaoZhe.tar.bz2,no-license,no,high,manual,https://huggingface.co/spaces/lkz99/tts_model/tree/main
70
+ vits-zh-hf-fanchen-wnj.tar.bz2,no-license,no,high,manual,https://huggingface.co/spaces/lkz99/tts_model/tree/main
71
+ sherpa-onnx-vits-zh-ll.tar.bz2,apache-2.0,yes,high,manual,https://github.com/Plachtaa/VITS-fast-fine-tuning
72
+ vits-piper-en_GB-southern_english_female_medium.tar.bz2,mit,yes,high,manual,https://github.com/rhasspy/piper
73
+ vits-melo-tts-zh_en.tar.bz2,mit,yes,high,manual,https://github.com/myshell-ai/MeloTTS
74
+ vits-melo-tts-en.tar.bz2,mit,yes,high,manual,https://github.com/myshell-ai/MeloTTS
75
+ vits-piper-nl_BE-rdh-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-rdh-medium
76
+ vits-piper-nl_BE-rdh-x_low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-rdh-x_low
77
+ vits-piper-zh_CN-huayan-medium.tar.bz2,no-license,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-zh_CN-huayan-medium
78
+ vits-piper-fa_en-rezahedayatfar-ibrahimwalk-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_en-rezahedayatfar-ibrahimwalk-medium
79
+ matcha-tts-fa_en-musa.tar.bz2,cc0,yes,high,manual,https://huggingface.co/mah92/Musa-FA_EN-Matcha-TTS-Model
80
+ matcha-tts-fa_en-khadijah.tar.bz2,cc0,yes,high,manual,https://huggingface.co/mah92/Khadijah-FA_EN-Matcha-TTS-Model
81
+ vits-piper-ka_GE-natia-medium.tar.bz2,gpl-2.0,conditional,medium,manual,https://github.com/Olga-Yakovleva/RHVoice
82
+ vits-piper-ka_GE-natia-medium-int8.tar.bz2,gpl-2.0,conditional,high,manual,https://github.com/Olga-Yakovleva/RHVoice
83
+ vits-piper-ka_GE-natia-medium-fp16.tar.bz2,gpl-2.0,conditional,high,manual,https://github.com/Olga-Yakovleva/RHVoice
84
+ vits-piper-kk_KZ-raya-x_low-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
85
+ vits-piper-kk_KZ-issai-high.tar.bz2,cc-by-4.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-issai-high
86
+ vits-piper-kk_KZ-issai-high-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-issai-high
87
+ vits-piper-kk_KZ-issai-high-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-issai-high
88
+ vits-piper-kk_KZ-iseke-x_low.tar.bz2,cc-by-4.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-iseke-x_low
89
+ vits-piper-kk_KZ-iseke-x_low-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-iseke-x_low
90
+ vits-piper-kk_KZ-iseke-x_low-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-iseke-x_low
91
+ vits-piper-no_NO-talesyntese-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-no_NO-talesyntese-medium
92
+ vits-piper-no_NO-talesyntese-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-no_NO-talesyntese-medium
93
+ vits-piper-no_NO-talesyntese-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-no_NO-talesyntese-medium
94
+ vits-piper-sl_SI-artur-medium.tar.bz2,cc-by-4.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-sl_SI-artur-medium
95
+ vits-piper-sl_SI-artur-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-sl_SI-artur-medium
96
+ vits-piper-sl_SI-artur-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-sl_SI-artur-medium
97
+ vits-piper-sk_SK-lili-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-sk_SK-lili-medium
98
+ vits-piper-sk_SK-lili-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-sk_SK-lili-medium
99
+ vits-piper-vi_VN-25hours_single-low.tar.bz2,apache-2.0,yes,medium,huggingface_model_card,https://github.com/TensorSpeech/TensorFlowASR/blob/main/LICENSE
100
+ vits-piper-sk_SK-lili-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-sk_SK-lili-medium
101
+ vits-piper-vi_VN-25hours_single-low-int8.tar.bz2,apache-2.0,yes,high,manual,https://github.com/TensorSpeech/TensorFlowASR/blob/main/LICENSE
102
+ vits-piper-vi_VN-25hours_single-low-fp16.tar.bz2,apache-2.0,yes,high,manual,https://github.com/TensorSpeech/TensorFlowASR/blob/main/LICENSE
103
+ vits-piper-ml_IN-meera-medium.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
104
+ vits-piper-ml_IN-meera-medium-int8.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
105
+ vits-piper-ml_IN-meera-medium-fp16.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
106
+ vits-piper-sr_RS-serbski_institut-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
107
+ vits-piper-tr_TR-fettah-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fettah-medium
108
+ vits-piper-tr_TR-fettah-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fettah-medium
109
+ vits-piper-tr_TR-fettah-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fettah-medium
110
+ kokoro-multi-lang-v1_0.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-multi-lang-v1_0/LICENSE
111
+ kokoro-int8-multi-lang-v1_0.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-int8-multi-lang-v1_0/LICENSE
112
+ kokoro-multi-lang-v1_1.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-multi-lang-v1_1/LICENSE
113
+ kokoro-int8-multi-lang-v1_1.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-int8-multi-lang-v1_1/LICENSE
114
+ vits-piper-en_GB-northern_english_male-medium.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-northern_english_male-medium
115
+ vits-piper-en_GB-northern_english_male-medium-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-northern_english_male-medium
116
+ vits-piper-en_GB-northern_english_male-medium-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-northern_english_male-medium
117
+ vits-piper-en_GB-jenny_dioco-medium.tar.bz2,mit,yes,high,manual,https://github.com/dioco-group/jenny-tts-dataset
118
+ vits-piper-en_GB-jenny_dioco-medium-int8.tar.bz2,mit,yes,high,manual,https://github.com/dioco-group/jenny-tts-dataset
119
+ vits-piper-en_US-kristin-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-kristin-medium
120
+ vits-piper-en_GB-jenny_dioco-medium-fp16.tar.bz2,mit,yes,high,manual,https://github.com/dioco-group/jenny-tts-dataset
121
+ vits-piper-en_US-kristin-medium-int8.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-kristin-medium
122
+ vits-piper-en_US-kristin-medium-fp16.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-kristin-medium
123
+ vits-piper-en_GB-alan-medium.tar.bz2,proprietary-restricted,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
124
+ vits-piper-en_GB-alan-medium-int8.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
125
+ vits-piper-en_GB-alan-medium-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
126
+ vits-piper-en_US-amy-low.tar.bz2,proprietary-restricted,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
127
+ vits-piper-en_GB-alan-low.tar.bz2,proprietary-restricted,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
128
+ vits-piper-en_US-amy-low-int8.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
129
+ vits-piper-en_GB-alan-low-int8.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
130
+ vits-piper-en_US-amy-low-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
131
+ vits-piper-en_GB-alan-low-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://github.com/MycroftAI/mimic3-voices/blob/master/voices/en_UK/apope_low
132
+ vits-piper-en_GB-southern_english_male-medium.tar.bz2,apache-2.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_male-medium
133
+ vits-piper-en_GB-southern_english_male-medium-int8.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_male-medium
134
+ vits-piper-en_GB-cori-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-medium
135
+ vits-piper-en_GB-southern_english_male-medium-fp16.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_male-medium
136
+ vits-piper-en_GB-cori-medium-int8.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-medium
137
+ vits-piper-en_US-lessac-high.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-high
138
+ vits-piper-en_GB-cori-medium-fp16.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-medium
139
+ vits-piper-en_GB-cori-high.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-high
140
+ vits-piper-en_US-lessac-high-int8.tar.bz2,research-only,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-high
141
+ vits-piper-en_US-lessac-high-fp16.tar.bz2,research-only,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-high
142
+ vits-piper-en_GB-cori-high-int8.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-high
143
+ vits-piper-en_GB-aru-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-aru-medium
144
+ vits-piper-en_GB-cori-high-fp16.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-cori-high
145
+ vits-piper-en_GB-aru-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-aru-medium
146
+ vits-piper-en_US-norman-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-norman-medium
147
+ vits-piper-en_GB-aru-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-aru-medium
148
+ vits-piper-en_US-norman-medium-int8.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-norman-medium
149
+ vits-piper-en_GB-alba-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-alba-medium
150
+ vits-piper-en_US-norman-medium-fp16.tar.bz2,public-domain,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-norman-medium
151
+ vits-piper-en_GB-alba-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-alba-medium
152
+ vits-piper-en_GB-alba-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-alba-medium
153
+ vits-piper-en_GB-southern_english_female-low.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_female-low
154
+ vits-piper-en_GB-southern_english_female-low-int8.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_female-low
155
+ vits-piper-en_GB-southern_english_female-low-fp16.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-southern_english_female-low
156
+ vits-piper-en_GB-semaine-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-semaine-medium
157
+ vits-piper-en_GB-semaine-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-semaine-medium
158
+ vits-piper-en_GB-semaine-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-semaine-medium
159
+ vits-piper-en_US-arctic-medium-int8.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-arctic-medium
160
+ vits-piper-en_US-arctic-medium-fp16.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-arctic-medium
161
+ vits-piper-en_US-glados-high.tar.bz2,unlicense,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-glados-high
162
+ vits-piper-en_US-glados-high-int8.tar.bz2,unlicense,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-glados-high
163
+ vits-piper-en_US-amy-medium-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://github.com/MycroftAI/mimic3-voices
164
+ vits-piper-en_US-glados-high-fp16.tar.bz2,unlicense,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-glados-high
165
+ vits-piper-en_US-amy-medium-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://github.com/MycroftAI/mimic3-voices
166
+ vits-piper-en_US-ryan-high.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-high
167
+ vits-piper-en_US-ryan-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-high
168
+ vits-piper-en_US-ryan-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-high
169
+ vits-piper-en_US-reza_ibrahim-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-fa_IR-reza_ibrahim-medium
170
+ vits-piper-en_US-l2arctic-medium.tar.bz2,cc-by-nc-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-l2arctic-medium
171
+ vits-piper-en_US-reza_ibrahim-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-fa_IR-reza_ibrahim-medium
172
+ vits-piper-en_US-l2arctic-medium-int8.tar.bz2,cc-by-nc-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-l2arctic-medium
173
+ vits-piper-en_US-ryan-low-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-low
174
+ vits-piper-en_US-reza_ibrahim-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/csukuangfj/vits-piper-fa_IR-reza_ibrahim-medium
175
+ vits-piper-en_US-l2arctic-medium-fp16.tar.bz2,cc-by-nc-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-l2arctic-medium
176
+ vits-piper-en_US-ryan-low-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-low
177
+ vits-piper-en_US-kusal-medium.tar.bz2,apache-2.0,yes,medium,huggingface_model_card,https://github.com/MycroftAI/mimic2
178
+ vits-piper-en_US-kusal-medium-int8.tar.bz2,apache-2.0,yes,medium,huggingface_model_card,https://github.com/MycroftAI/mimic2
179
+ vits-piper-en_US-kusal-medium-fp16.tar.bz2,apache-2.0,yes,medium,huggingface_model_card,https://github.com/MycroftAI/mimic2
180
+ vits-piper-en_GB-vctk-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-vctk-medium
181
+ vits-piper-en_GB-vctk-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-vctk-medium
182
+ vits-piper-en_GB-vctk-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_GB-vctk-medium
183
+ vits-piper-en_GB-southern_english_female-medium.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
184
+ vits-piper-en_GB-southern_english_female-medium-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
185
+ vits-piper-en_GB-southern_english_female-medium-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
186
+ vits-piper-en_US-ljspeech-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-medium
187
+ vits-piper-en_US-ljspeech-medium-int8.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-medium
188
+ vits-piper-en_US-ljspeech-medium-fp16.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-medium
189
+ vits-piper-en_US-ljspeech-high.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-high
190
+ vits-piper-en_US-ljspeech-high-int8.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-high
191
+ vits-piper-en_US-ljspeech-high-fp16.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ljspeech-high
192
+ kokoro-int8-en-v0_19.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-int8-en-v0_19/LICENSE
193
+ kokoro-en-v0_19.tar.bz2,apache-2.0,yes,high,archive_license_file,kokoro-en-v0_19/LICENSE
194
+ kitten-nano-en-v0_2-fp16.tar.bz2,apache-2.0,yes,high,archive_license_file,kitten-nano-en-v0_2-fp16/LICENSE
195
+ kitten-nano-en-v0_1-fp16.tar.bz2,apache-2.0,yes,high,archive_license_file,kitten-nano-en-v0_1-fp16/LICENSE
196
+ sherpa-onnx-zipvoice-distill-zh-en-emilia.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/k2-fsa/ZipVoice
197
+ sherpa-onnx-zipvoice-zh-en-emilia.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/k2-fsa/ZipVoice
198
+ vits-piper-pl_PL-jarvis_wg_glos-medium.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-jarvis_wg_glos-medium
199
+ vits-piper-pl_PL-jarvis_wg_glos-medium-int8.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-jarvis_wg_glos-medium
200
+ vits-piper-pl_PL-zenski_wg_glos-medium.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-zenski_wg_glos-medium
201
+ vits-piper-pl_PL-meski_wg_glos-medium.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-meski_wg_glos-medium
202
+ vits-piper-pl_PL-jarvis_wg_glos-medium-fp16.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-jarvis_wg_glos-medium
203
+ vits-piper-pl_PL-zenski_wg_glos-medium-int8.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-zenski_wg_glos-medium
204
+ vits-piper-pl_PL-meski_wg_glos-medium-int8.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-meski_wg_glos-medium
205
+ vits-piper-pl_PL-zenski_wg_glos-medium-fp16.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-zenski_wg_glos-medium
206
+ vits-piper-pl_PL-gosia-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-gosia-medium
207
+ vits-piper-pl_PL-meski_wg_glos-medium-fp16.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-meski_wg_glos-medium
208
+ vits-piper-pl_PL-darkman-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-darkman-medium
209
+ vits-piper-pl_PL-gosia-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-gosia-medium
210
+ vits-piper-pl_PL-gosia-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-gosia-medium
211
+ vits-piper-pl_PL-darkman-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-darkman-medium
212
+ vits-piper-pl_PL-darkman-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-darkman-medium
213
+ vits-piper-nl_NL-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-miro-high
214
+ vits-piper-nl_NL-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-miro-high
215
+ vits-piper-nl_NL-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-dii-high
216
+ vits-piper-nl_NL-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-miro-high
217
+ vits-piper-nl_NL-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-dii-high
218
+ vits-piper-nl_NL-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-nl_NL-dii-high
219
+ vits-piper-pt_PT-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-dii-high
220
+ vits-piper-pt_PT-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-dii-high
221
+ vits-piper-pt_PT-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-dii-high
222
+ vits-piper-pt_PT-tugao-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_PT-tugao-medium
223
+ vits-piper-pt_PT-tugao-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_PT-tugao-medium
224
+ vits-piper-pt_PT-tugao-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_PT-tugao-medium
225
+ vits-piper-pt_PT-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-miro-high
226
+ vits-piper-pt_PT-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-miro-high
227
+ vits-piper-pt_PT-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_PT-miro-high
228
+ vits-piper-en_GB-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-dii-high
229
+ vits-piper-en_GB-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-dii-high
230
+ vits-piper-en_GB-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-dii-high
231
+ vits-piper-en_US-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-miro-high
232
+ vits-piper-en_US-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-miro-high
233
+ vits-piper-en_US-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_US-miro-high
234
+ vits-piper-en_GB-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-miro-high
235
+ vits-piper-en_GB-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-miro-high
236
+ vits-piper-en_GB-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-en_GB-miro-high
237
+ kitten-mini-en-v0_1-fp16.tar.bz2,apache-2.0,yes,high,archive_license_file,kitten-mini-en-v0_1-fp16/LICENSE
238
+ vits-piper-nl_NL-ronnie-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
239
+ vits-piper-en_US-kathleen-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-kathleen-low
240
+ vits-piper-nl_NL-ronnie-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
241
+ vits-piper-en_US-kathleen-low-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-kathleen-low
242
+ vits-piper-nl_NL-ronnie-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
243
+ vits-piper-en_US-kathleen-low-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-kathleen-low
244
+ vits-piper-nl_NL-pim-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
245
+ vits-piper-en_US-john-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-john-medium
246
+ vits-piper-tr_TR-fahrettin-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fahrettin-medium
247
+ vits-piper-nl_NL-pim-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
248
+ vits-piper-en_US-john-medium-int8.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-john-medium
249
+ vits-piper-pt_BR-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-miro-high
250
+ vits-piper-tr_TR-fahrettin-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fahrettin-medium
251
+ vits-piper-en_US-john-medium-fp16.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-john-medium
252
+ vits-piper-nl_NL-pim-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
253
+ vits-piper-ru_RU-ruslan-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ru_RU-ruslan-medium
254
+ vits-piper-pt_BR-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-miro-high
255
+ vits-piper-tr_TR-fahrettin-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-fahrettin-medium
256
+ vits-piper-en_US-joe-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-joe-medium
257
+ vits-piper-nl_BE-nathalie-x_low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-x_low
258
+ vits-piper-pt_BR-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-miro-high
259
+ vits-piper-ru_RU-ruslan-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ru_RU-ruslan-medium
260
+ vits-piper-tr_TR-dfki-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-dfki-medium
261
+ vits-piper-ml_IN-arjun-medium.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
262
+ vits-piper-en_US-joe-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-joe-medium
263
+ vits-piper-nl_BE-nathalie-x_low-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-x_low
264
+ vits-piper-pt_BR-jeff-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
265
+ vits-piper-ru_RU-ruslan-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ru_RU-ruslan-medium
266
+ vits-piper-tr_TR-dfki-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-dfki-medium
267
+ vits-piper-en_US-joe-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-joe-medium
268
+ vits-piper-nl_BE-nathalie-x_low-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-x_low
269
+ vits-piper-ml_IN-arjun-medium-int8.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
270
+ vits-piper-pt_BR-jeff-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
271
+ vits-piper-en_US-libritts_r-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts_r-medium
272
+ vits-piper-ru_RU-irina-medium.tar.bz2,gpl-2.0,conditional,medium,huggingface_model_card,https://github.com/RHVoice/RHVoice
273
+ vits-piper-en_US-hfc_male-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_male-medium
274
+ vits-piper-tr_TR-dfki-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-tr_TR-dfki-medium
275
+ vits-piper-nl_BE-nathalie-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-medium
276
+ vits-piper-pt_BR-jeff-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
277
+ vits-piper-uk_UA-lada-x_low.tar.bz2,apache-2.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-uk_UA-lada-x_low
278
+ vits-piper-ml_IN-arjun-medium-fp16.tar.bz2,apache-2.0,yes,high,manual,https://www.kaggle.com/code/mpwolke/indic-tts-malayalam-speech-corpus
279
+ vits-piper-en_US-libritts_r-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts_r-medium
280
+ vits-piper-ru_RU-irina-medium-int8.tar.bz2,gpl-2.0,conditional,medium,huggingface_model_card,https://github.com/RHVoice/RHVoice
281
+ vits-piper-sw_CD-lanfrica-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://data.mendeley.com/datasets/vbvj6j6pm9/1
282
+ vits-piper-nl_BE-nathalie-medium-int8.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-medium
283
+ vits-piper-en_US-hfc_male-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_male-medium
284
+ vits-piper-pt_BR-faber-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_BR-faber-medium
285
+ vits-piper-en_US-sam-medium.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
286
+ vits-piper-en_US-libritts_r-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts_r-medium
287
+ vits-piper-uk_UA-lada-x_low-int8.tar.bz2,apache-2.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-uk_UA-lada-x_low
288
+ vits-piper-lv_LV-aivars-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-lv_LV-aivars-medium
289
+ vits-piper-ru_RU-irina-medium-fp16.tar.bz2,gpl-2.0,conditional,medium,huggingface_model_card,https://github.com/RHVoice/RHVoice
290
+ vits-piper-nl_BE-nathalie-medium-fp16.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-nl_BE-nathalie-medium
291
+ vits-piper-en_US-hfc_male-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_male-medium
292
+ vits-piper-sw_CD-lanfrica-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://data.mendeley.com/datasets/vbvj6j6pm9/1
293
+ vits-piper-pt_BR-faber-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
294
+ vits-piper-en_US-libritts-high.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts-high
295
+ vits-piper-en_US-hfc_female-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_female-medium
296
+ vits-piper-ne_NP-google-x_low.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ne_NP-google-x_low
297
+ vits-piper-uk_UA-lada-x_low-fp16.tar.bz2,apache-2.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-uk_UA-lada-x_low
298
+ vits-piper-ru_RU-dmitri-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ru_RU-dmitri-medium
299
+ vits-piper-pt_BR-faber-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
300
+ vits-piper-sw_CD-lanfrica-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://data.mendeley.com/datasets/vbvj6j6pm9/1
301
+ vits-piper-en_US-sam-medium-int8.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
302
+ vits-piper-lv_LV-aivars-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
303
+ vits-piper-pt_BR-edresson-low.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_BR-edresson-low
304
+ vits-piper-ne_NP-google-x_low-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
305
+ vits-piper-en_US-hfc_female-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_female-medium
306
+ vits-piper-en_US-libritts-high-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts-high
307
+ vits-piper-sv_SE-nst-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-sv_SE-nst-medium
308
+ vits-piper-pl_PL-mc_speech-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-mc_speech-medium
309
+ vits-piper-ru_RU-dmitri-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
310
+ vits-piper-en_US-sam-medium-fp16.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
311
+ vits-piper-lv_LV-aivars-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
312
+ vits-piper-ne_NP-google-x_low-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
313
+ vits-piper-en_US-hfc_female-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-hfc_female-medium
314
+ vits-piper-pt_BR-edresson-low-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_BR-edresson-low
315
+ vits-piper-en_US-libritts-high-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-libritts-high
316
+ vits-piper-ru_RU-dmitri-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
317
+ vits-piper-sv_SE-nst-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
318
+ vits-piper-pt_BR-edresson-low-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pt_BR-edresson-low
319
+ vits-piper-en_US-danny-low.tar.bz2,no-license,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices
320
+ vits-piper-ne_NP-google-medium.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ne_NP-google-medium
321
+ vits-piper-lb_LU-marylux-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-lb_LU-marylux-medium
322
+ vits-piper-pl_PL-mc_speech-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
323
+ vits-piper-en_US-ryan-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-medium
324
+ vits-piper-en_US-lessac-medium.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-medium
325
+ vits-piper-ru_RU-denis-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ru_RU-denis-medium
326
+ vits-piper-sv_SE-nst-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
327
+ vits-piper-pt_BR-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-dii-high
328
+ vits-piper-en_US-danny-low-int8.tar.bz2,no-license,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices
329
+ vits-piper-ne_NP-google-medium-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
330
+ vits-piper-pl_PL-mc_speech-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
331
+ vits-piper-lb_LU-marylux-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-lb_LU-marylux-medium
332
+ vits-piper-sv_SE-lisa-medium.tar.bz2,mit,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
333
+ vits-piper-uk_UA-ukrainian_tts-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-uk_UA-ukrainian_tts-medium
334
+ vits-piper-en_US-lessac-medium-int8.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-medium
335
+ vits-piper-ru_RU-denis-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
336
+ vits-piper-en_US-ryan-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-medium
337
+ vits-piper-en_US-danny-low-fp16.tar.bz2,no-license,no,medium,huggingface_model_card,https://github.com/MycroftAI/mimic3-voices
338
+ vits-piper-pt_BR-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-dii-high
339
+ vits-piper-ne_NP-google-medium-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
340
+ vits-piper-vi_VN-vais1000-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vais1000-medium
341
+ vits-piper-vi_VN-vivos-x_low.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vivos-x_low
342
+ vits-piper-en_US-lessac-medium-fp16.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-medium
343
+ vits-piper-lb_LU-marylux-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-lb_LU-marylux-medium
344
+ vits-piper-ru_RU-denis-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
345
+ vits-piper-pt_BR-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-pt_BR-dii-high
346
+ vits-piper-uk_UA-ukrainian_tts-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
347
+ vits-piper-sv_SE-lisa-medium-int8.tar.bz2,mit,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
348
+ vits-piper-pl_PL-justyna_wg_glos-medium.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-justyna_wg_glos-medium
349
+ vits-piper-en_US-bryce-medium.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-bryce-medium
350
+ vits-piper-ne_NP-chitwan-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
351
+ vits-piper-en_US-ryan-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-medium
352
+ vits-piper-vi_VN-vivos-x_low-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vivos-x_low
353
+ vits-piper-vi_VN-vais1000-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vais1000-medium
354
+ vits-piper-en_US-lessac-low.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-low
355
+ vits-piper-pt_BR-cadu-medium.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
356
+ vits-piper-sv_SE-lisa-medium-fp16.tar.bz2,mit,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
357
+ vits-piper-ro_RO-mihai-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ro_RO-mihai-medium
358
+ vits-piper-uk_UA-ukrainian_tts-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
359
+ vits-piper-en_US-bryce-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
360
+ vits-piper-kk_KZ-raya-x_low.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-kk_KZ-raya-x_low
361
+ vits-piper-ne_NP-chitwan-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
362
+ vits-piper-pl_PL-justyna_wg_glos-medium-int8.tar.bz2,mit,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-pl_PL-justyna_wg_glos-medium
363
+ vits-piper-pt_BR-cadu-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
364
+ vits-piper-en_US-ryan-low.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-ryan-low
365
+ vits-piper-en_US-lessac-low-int8.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-low
366
+ vits-piper-sr_RS-serbski_institut-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-sr_RS-serbski_institut-medium
367
+ vits-piper-en_US-bryce-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
368
+ vits-piper-vi_VN-vivos-x_low-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vivos-x_low
369
+ vits-piper-vi_VN-vais1000-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-vi_VN-vais1000-medium
370
+ vits-piper-ro_RO-mihai-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
371
+ vits-piper-kk_KZ-raya-x_low-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
372
+ vits-piper-ne_NP-chitwan-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
373
+ vits-piper-pt_BR-cadu-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
374
+ vits-piper-en_US-lessac-low-fp16.tar.bz2,research-only,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-lessac-low
375
+ vits-piper-en_US-arctic-medium.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-en_US-arctic-medium
376
+ vits-piper-sr_RS-serbski_institut-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
377
+ vits-piper-el_GR-rapunzelina-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-el_GR-rapunzelina-low
378
+ vits-piper-el_GR-rapunzelina-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
379
+ vits-piper-el_GR-rapunzelina-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
380
+ vits-piper-de_DE-karlsson-low.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-karlsson-low
381
+ vits-piper-de_DE-karlsson-low-int8.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
382
+ vits-piper-de_DE-thorsten_emotional-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-thorsten_emotional-medium
383
+ vits-piper-de_DE-karlsson-low-fp16.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
384
+ vits-piper-de_DE-thorsten_emotional-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
385
+ vits-piper-de_DE-eva_k-x_low.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-eva_k-x_low
386
+ vits-piper-de_DE-thorsten_emotional-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
387
+ vits-piper-de_DE-eva_k-x_low-int8.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
388
+ vits-piper-de_DE-thorsten-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-thorsten-medium
389
+ vits-piper-de_DE-eva_k-x_low-fp16.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
390
+ vits-piper-de_DE-thorsten-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
391
+ vits-piper-da_DK-talesyntese-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-da_DK-talesyntese-medium
392
+ vits-piper-de_DE-thorsten-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
393
+ vits-piper-da_DK-talesyntese-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
394
+ vits-piper-de_DE-thorsten-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-thorsten-low
395
+ vits-piper-da_DK-talesyntese-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
396
+ vits-piper-de_DE-thorsten-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
397
+ vits-piper-cy_GB-gwryw_gogleddol-medium.tar.bz2,no-license,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-cy_GB-gwryw_gogleddol-medium
398
+ vits-piper-de_DE-thorsten-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
399
+ vits-piper-cy_GB-gwryw_gogleddol-medium-int8.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
400
+ vits-piper-de_DE-thorsten-high.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-thorsten-high
401
+ vits-piper-cy_GB-gwryw_gogleddol-medium-fp16.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
402
+ vits-piper-cy_GB-bu_tts-medium.tar.bz2,cc-by,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
403
+ vits-piper-de_DE-thorsten-high-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
404
+ vits-piper-cy_GB-bu_tts-medium-int8.tar.bz2,cc-by,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
405
+ vits-piper-de_DE-thorsten-high-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
406
+ vits-piper-cy_GB-bu_tts-medium-fp16.tar.bz2,cc-by,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
407
+ vits-piper-de_DE-ramona-low.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-ramona-low
408
+ vits-piper-cs_CZ-jirka-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-cs_CZ-jirka-medium
409
+ vits-piper-de_DE-ramona-low-int8.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
410
+ vits-piper-cs_CZ-jirka-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
411
+ vits-piper-de_DE-ramona-low-fp16.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
412
+ vits-piper-cs_CZ-jirka-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
413
+ vits-piper-de_DE-pavoque-low.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-pavoque-low
414
+ vits-piper-cs_CZ-jirka-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-cs_CZ-jirka-low
415
+ vits-piper-de_DE-pavoque-low-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
416
+ vits-piper-cs_CZ-jirka-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
417
+ vits-piper-de_DE-pavoque-low-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
418
+ vits-piper-cs_CZ-jirka-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
419
+ vits-piper-de_DE-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-miro-high
420
+ vits-piper-ca_ES-upc_pau-x_low.tar.bz2,cc-by-sa-3.0-es,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ca_ES-upc_pau-x_low
421
+ vits-piper-de_DE-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-de_DE-miro-high
422
+ vits-piper-ca_ES-upc_pau-x_low-int8.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
423
+ vits-piper-ca_ES-upc_pau-x_low-fp16.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
424
+ vits-piper-de_DE-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-miro-high
425
+ vits-piper-ca_ES-upc_ona-x_low.tar.bz2,cc-by-sa-3.0-es,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ca_ES-upc_ona-x_low
426
+ vits-piper-de_DE-kerstin-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-kerstin-low
427
+ vits-piper-ca_ES-upc_ona-x_low-int8.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
428
+ vits-piper-de_DE-kerstin-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
429
+ vits-piper-ca_ES-upc_ona-x_low-fp16.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
430
+ vits-piper-de_DE-kerstin-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
431
+ vits-piper-ca_ES-upc_ona-medium.tar.bz2,cc-by-sa-3.0-es,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ca_ES-upc_ona-medium
432
+ vits-piper-de_DE-glados_turret-medium.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
433
+ vits-piper-ca_ES-upc_ona-medium-int8.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
434
+ vits-piper-de_DE-glados_turret-medium-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
435
+ vits-piper-ca_ES-upc_ona-medium-fp16.tar.bz2,cc-by-sa,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
436
+ vits-piper-de_DE-glados_turret-medium-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
437
+ vits-piper-ar_JO-kareem-medium.tar.bz2,no-license,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-kareem-medium
438
+ vits-piper-de_DE-glados_turret-low.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
439
+ vits-piper-ar_JO-kareem-medium-int8.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
440
+ vits-piper-de_DE-glados_turret-low-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
441
+ vits-piper-ar_JO-kareem-medium-fp16.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
442
+ vits-piper-de_DE-glados_turret-low-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
443
+ vits-piper-ar_JO-kareem-low.tar.bz2,no-license,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-kareem-low
444
+ vits-piper-de_DE-glados_turret-high.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
445
+ vits-piper-ar_JO-kareem-low-int8.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
446
+ vits-piper-de_DE-glados_turret-high-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
447
+ vits-piper-ar_JO-kareem-low-fp16.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
448
+ vits-piper-de_DE-glados_turret-high-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
449
+ vits-piper-ar_JO-SA_miro_V2-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro_V2-high
450
+ vits-piper-de_DE-glados-medium.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
451
+ vits-piper-ar_JO-SA_miro_V2-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro_V2-high
452
+ vits-piper-ar_JO-SA_miro_V2-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro_V2-high
453
+ vits-piper-de_DE-glados-medium-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
454
+ vits-piper-ar_JO-SA_miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro-high
455
+ vits-piper-de_DE-glados-medium-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
456
+ vits-piper-ar_JO-SA_miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro-high
457
+ vits-piper-de_DE-glados-low.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
458
+ vits-piper-ar_JO-SA_miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,manual,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_miro-high
459
+ vits-piper-de_DE-glados-low-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
460
+ vits-piper-ar_JO-SA_dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_dii-high
461
+ vits-piper-de_DE-glados-low-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
462
+ vits-piper-ar_JO-SA_dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_dii-high
463
+ vits-piper-de_DE-glados-high.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
464
+ vits-piper-ar_JO-SA_dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-ar_JO-SA_dii-high
465
+ vits-piper-de_DE-glados-high-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
466
+ vits-piper-de_DE-glados-high-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/systemofapwne/piper-de-glados
467
+ vits-piper-de_DE-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-dii-high
468
+ vits-piper-de_DE-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-dii-high
469
+ vits-piper-de_DE-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-de_DE-dii-high
470
+ vits-piper-it_IT-riccardo-x_low.tar.bz2,bsd-3-clause,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-riccardo-x_low
471
+ vits-piper-it_IT-riccardo-x_low-int8.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
472
+ vits-piper-it_IT-riccardo-x_low-fp16.tar.bz2,bsd-3-clause,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
473
+ vits-piper-it_IT-paola-medium.tar.bz2,cc0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-paola-medium
474
+ vits-piper-it_IT-paola-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
475
+ vits-piper-it_IT-paola-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
476
+ vits-piper-it_IT-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-miro-high
477
+ vits-piper-it_IT-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-miro-high
478
+ vits-piper-it_IT-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-miro-high
479
+ vits-piper-is_IS-ugla-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-is_IS-ugla-medium
480
+ vits-piper-is_IS-ugla-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
481
+ vits-piper-is_IS-ugla-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
482
+ vits-piper-is_IS-steinn-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-is_IS-steinn-medium
483
+ vits-piper-it_IT-dii-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-dii-high
484
+ vits-piper-is_IS-steinn-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
485
+ vits-piper-is_IS-steinn-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
486
+ vits-piper-it_IT-dii-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-dii-high
487
+ vits-piper-is_IS-salka-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-is_IS-salka-medium
488
+ vits-piper-it_IT-dii-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-it_IT-dii-high
489
+ vits-piper-is_IS-salka-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
490
+ vits-piper-fr_FR-tom-medium.tar.bz2,agpl-3.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-tom-medium
491
+ vits-piper-is_IS-salka-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
492
+ vits-piper-is_IS-bui-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-is_IS-bui-medium
493
+ vits-piper-fr_FR-tom-medium-int8.tar.bz2,agpl-3.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-tom-medium
494
+ vits-piper-is_IS-bui-medium-int8.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
495
+ vits-piper-fr_FR-tom-medium-fp16.tar.bz2,agpl-3.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-tom-medium
496
+ vits-piper-is_IS-bui-medium-fp16.tar.bz2,cc-by-4.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
497
+ vits-piper-id_ID-news_tts-medium.tar.bz2,apache-2.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-id_ID-news_tts-medium
498
+ vits-piper-fr_FR-siwis-medium.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-medium
499
+ vits-piper-id_ID-news_tts-medium-int8.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
500
+ vits-piper-fr_FR-siwis-medium-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-medium
501
+ vits-piper-id_ID-news_tts-medium-fp16.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
502
+ vits-piper-hu_HU-imre-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hu_HU-imre-medium
503
+ vits-piper-fr_FR-siwis-medium-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-medium
504
+ vits-piper-hu_HU-imre-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
505
+ vits-piper-fr_FR-siwis-low.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-low
506
+ vits-piper-hu_HU-imre-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
507
+ vits-piper-fr_FR-siwis-low-int8.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-low
508
+ vits-piper-hu_HU-berta-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hu_HU-berta-medium
509
+ vits-piper-fr_FR-siwis-low-fp16.tar.bz2,cc-by-4.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-siwis-low
510
+ vits-piper-hu_HU-berta-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
511
+ vits-piper-hu_HU-berta-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
512
+ vits-piper-fr_FR-gilles-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-gilles-low
513
+ vits-piper-hu_HU-anna-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hu_HU-anna-medium
514
+ vits-piper-fr_FR-gilles-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
515
+ vits-piper-hu_HU-anna-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
516
+ vits-piper-fr_FR-gilles-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
517
+ vits-piper-hu_HU-anna-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
518
+ vits-piper-hi_IN-rohan-medium.tar.bz2,proprietary-restricted,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-rohan-medium
519
+ vits-piper-fi_FI-harri-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fi_FI-harri-medium
520
+ vits-piper-hi_IN-rohan-medium-int8.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
521
+ vits-piper-fi_FI-harri-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
522
+ vits-piper-hi_IN-rohan-medium-fp16.tar.bz2,proprietary-restricted,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
523
+ vits-piper-fi_FI-harri-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
524
+ vits-piper-hi_IN-priyamvada-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-priyamvada-medium
525
+ vits-piper-fi_FI-harri-low.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fi_FI-harri-low
526
+ vits-piper-hi_IN-priyamvada-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-priyamvada-medium
527
+ vits-piper-hi_IN-priyamvada-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-priyamvada-medium
528
+ vits-piper-fi_FI-harri-low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
529
+ vits-piper-hi_IN-pratham-medium.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-pratham-medium
530
+ vits-piper-fi_FI-harri-low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
531
+ vits-piper-hi_IN-pratham-medium-int8.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-pratham-medium
532
+ vits-piper-hi_IN-pratham-medium-fp16.tar.bz2,cc-by-nc-sa-4.0,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-hi_IN-pratham-medium
533
+ vits-piper-fa_IR-reza_ibrahim-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_IR-reza_ibrahim-medium
534
+ vits-piper-fr_FR-upmc-medium.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-upmc-medium
535
+ vits-piper-fa_IR-reza_ibrahim-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
536
+ vits-piper-fr_FR-upmc-medium-int8.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-upmc-medium
537
+ vits-piper-fr_FR-upmc-medium-fp16.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-upmc-medium
538
+ vits-piper-fa_IR-reza_ibrahim-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
539
+ vits-piper-fr_FR-tjiho-model3.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model3/LICENSE.txt
540
+ vits-piper-fa_IR-gyro-medium.tar.bz2,no-license,no,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_IR-gyro-medium
541
+ vits-piper-fr_FR-tjiho-model3-int8.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model3-int8/LICENSE.txt
542
+ vits-piper-fr_FR-tjiho-model3-fp16.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model3-fp16/LICENSE.txt
543
+ vits-piper-fa_IR-gyro-medium-int8.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
544
+ vits-piper-fr_FR-tjiho-model2.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model2/LICENSE.txt
545
+ vits-piper-fa_IR-gyro-medium-fp16.tar.bz2,no-license,no,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
546
+ vits-piper-fr_FR-tjiho-model2-int8.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model2-int8/LICENSE.txt
547
+ vits-piper-fa_IR-ganji_adabi-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_IR-ganji_adabi-medium
548
+ vits-piper-fr_FR-tjiho-model2-fp16.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model2-fp16/LICENSE.txt
549
+ vits-piper-fr_FR-tjiho-model1.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model1/LICENSE.txt
550
+ vits-piper-fa_IR-ganji_adabi-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
551
+ vits-piper-fr_FR-tjiho-model1-int8.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model1-int8/LICENSE.txt
552
+ vits-piper-fa_IR-ganji_adabi-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
553
+ vits-piper-fr_FR-tjiho-model1-fp16.tar.bz2,agpl-3.0,conditional,high,archive_license_file,vits-piper-fr_FR-tjiho-model1-fp16/LICENSE.txt
554
+ vits-piper-fa_IR-ganji-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_IR-ganji-medium
555
+ vits-piper-fr_FR-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-miro-high
556
+ vits-piper-fr_FR-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-miro-high
557
+ vits-piper-fa_IR-ganji-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
558
+ vits-piper-fr_FR-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fr_FR-miro-high
559
+ vits-piper-fa_IR-ganji-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
560
+ vits-piper-fa_IR-amir-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-fa_IR-amir-medium
561
+ vits-piper-fa_IR-amir-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
562
+ vits-piper-fa_IR-amir-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
563
+ vits-piper-es_MX-claude-high.tar.bz2,apache-2.0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_MX-claude-high
564
+ vits-piper-es_MX-claude-high-int8.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
565
+ vits-piper-es_MX-claude-high-fp16.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
566
+ vits-piper-es_MX-ald-medium.tar.bz2,unlicense,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_MX-ald-medium
567
+ vits-piper-es_MX-ald-medium-int8.tar.bz2,unlicense,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
568
+ vits-piper-es_MX-ald-medium-fp16.tar.bz2,unlicense,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
569
+ vits-piper-es_ES-sharvard-medium.tar.bz2,cc-by-3.0,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-sharvard-medium
570
+ vits-piper-es_ES-sharvard-medium-int8.tar.bz2,cc-by-3.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
571
+ vits-piper-es_ES-sharvard-medium-fp16.tar.bz2,cc-by-3.0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
572
+ vits-piper-es_ES-miro-high.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-miro-high
573
+ vits-piper-es_ES-miro-high-int8.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-miro-high
574
+ vits-piper-es_ES-miro-high-fp16.tar.bz2,cc-by-nc-sa-4.0,no,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-miro-high
575
+ vits-piper-es_ES-glados-medium.tar.bz2,mit,yes,high,manual,https://github.com/dnhkng/GlaDOS
576
+ vits-piper-es_ES-glados-medium-int8.tar.bz2,mit,yes,high,manual,https://github.com/dnhkng/GlaDOS
577
+ vits-piper-es_ES-glados-medium-fp16.tar.bz2,mit,yes,high,manual,https://github.com/dnhkng/GlaDOS
578
+ vits-piper-es_ES-davefx-medium.tar.bz2,cc0,yes,high,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-davefx-medium
579
+ vits-piper-es_ES-davefx-medium-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
580
+ vits-piper-es_ES-davefx-medium-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
581
+ vits-piper-es_ES-carlfm-x_low.tar.bz2,public-domain,yes,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_ES-carlfm-x_low
582
+ vits-piper-es_ES-carlfm-x_low-int8.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
583
+ vits-piper-es_ES-carlfm-x_low-fp16.tar.bz2,cc0,yes,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
584
+ vits-piper-es_AR-daniela-high.tar.bz2,cc-by-sa-4.0,conditional,medium,huggingface_model_card,https://huggingface.co/csukuangfj/vits-piper-es_AR-daniela-high
585
+ vits-piper-es_AR-daniela-high-int8.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
586
+ vits-piper-es_AR-daniela-high-fp16.tar.bz2,cc-by-sa-4.0,conditional,high,manual,https://huggingface.co/rhasspy/piper-voices/tree/main
587
+ sherpa-onnx-zipvoice-distill-int8-zh-en-emilia.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/k2-fsa/ZipVoice
588
+ sherpa-onnx-zipvoice-distill-fp32-zh-en-emilia.tar.bz2,apache-2.0,yes,high,manual,https://huggingface.co/k2-fsa/ZipVoice
589
+ matcha-icefall-zh-en.tar.bz2,apache-2.0,yes,high,manual,https://modelscope.cn/models/dengcunqin/matcha_tts_zh_en_20251010/summary
590
+ sherpa-onnx-pocket-tts-int8-2026-01-26.tar.bz2,cc-by-4.0,yes,high,archive_license_file,sherpa-onnx-pocket-tts-int8-2026-01-26/LICENSE
591
+ sherpa-onnx-pocket-tts-2026-01-26.tar.bz2,cc-by-4.0,yes,high,archive_license_file,sherpa-onnx-pocket-tts-2026-01-26/LICENSE
592
+ matcha-icefall-zh-baker.tar.bz2,no-license,no,high,manual,https://k2-fsa.github.io/sherpa/onnx/tts/pretrained_models/matcha.html?highlight=matcha+tts#matcha-icefall-zh-baker-chinese-1-female-speaker
593
+ vits-icefall-en_US-ljspeech-medium.tar.bz2,public-domain,yes,high,manual,https://k2-fsa.github.io/sherpa/onnx/tts/pretrained_models/vits.html#ljspeech-english-single-speaker
594
+ vits-icefall-en_US-ljspeech-low.tar.bz2,public-domain,yes,high,manual,https://k2-fsa.github.io/sherpa/onnx/tts/pretrained_models/vits.html#ljspeech-english-single-speaker
595
+ matcha-icefall-en_US-ljspeech.tar.bz2,public-domain,yes,high,manual,https://k2-fsa.github.io/sherpa/onnx/tts/pretrained_models/matcha.html#matcha-icefall-en-us-ljspeech-american-english-1-female-speaker
596
+ sherpa-onnx-supertonic-tts-int8-2026-03-06.tar.bz2,mit,yes,high,archive_license_file,sherpa-onnx-supertonic-tts-int8-2026-03-06/LICENSE