#!/usr/bin/env python3
import os
import re
from pathlib import Path
from typing import List
BASE_URL = "https://huggingface.co/csukuangfj/sherpa-onnx-flutter/resolve/main/"
from dataclasses import dataclass
@dataclass
class APP:
major: int
minor: int
patch: int
arch: str
name1: str
name2: str
def __init__(self, _s):
# android
# sherpa-onnx-1.10.11-x86_64-zh-tts-vits-zh-hf-fanchen-wnj.apk
# sherpa-onnx-1.10.11-armeabi-v7a-zh-tts-vits-zh-hf-keqing.apk
# sherpa-onnx-1.10.11-x86_64-zh-tts-vits-zh-hf-fanchen-ZhiHuiLaoZhe_new.apk
# macos
# sherpa-onnx-1.10.11-osx-arm64-bn-tts-vits-mimic3-bn-multi_low.app.tar.bz2
# sherpa-onnx-1.10.11-osx-arm64-zh-tts-vits-zh-hf-theresa.app.tar.bz2
# Linux
# sherpa-onnx-1.10.11-linux-x86_64-zh-tts-vits-zh-hf-zenyatta.tar.bz2
# Windows
# sherpa-onnx-1.10.11-win-x64-zh-tts-vits-zh-hf-zenyatta.tar.bz2
s = _s.split("/")[-1]
split = s.split("-")
self.major, self.minor, self.patch = list(map(int, split[2].split(".")))
if "android" in _s:
self.os = "android"
self.arch = split[3]
self.lang = split[4]
self.name1 = split[-1]
if "arm" in _s:
self.arch = split[3] + "-" + split[4]
self.lang = split[5]
else:
self.os = split[3]
self.arch = split[4]
self.lang = split[5]
self.name1 = split[-1]
def sort_by_app(x):
x = APP(x)
return (x.major, x.minor, x.patch, x.os, x.arch, x.lang, x.name1)
def get_all_files(d: str, suffix: str) -> List[str]:
ss = []
for root, d, files in os.walk(d):
for f in files:
if f.endswith(".tar.bz2") or f.endswith(".apk"):
ss.append(os.path.join(root, f))
return list(map(lambda x: BASE_URL + x, ss))
def to_file_android(filename: str, files: List[str]):
content = r"""
Flutter Android APKs for text-to-speech
This page lists the text-to-speech APKs created with Flutter
for sherpa-onnx,
one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APK has the following rule:
- sherpa-onnx-{version}-{arch}-{lang}-tts-{model}.apk
where
- version: It specifies the current version, e.g., 1.10.11
- arch: The architecture targeted by this APK, e.g., arm64-v8a, armeabi-v7a, x86_64, x86
- lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
- model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
Note: For text-to-speech engine APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html
Note: Models from
piper have their names prefixed
with vits-piper-. For instance, for the model
vits-piper-en_US-lessac-medium.apk, its original name
in piper is
en_US-lessac-medium.apk, which is available at
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
Note: Models from
MycroftAI/mimic3-voices have their names prefixed
with mimic3-.
Note: Models from
coqui-ai/TTS have their names prefixed
with coqui-.
You can find many more models that have not been converted to sherpa-onnx
at
https://huggingface.co/rhasspy/piper-voices
Note about the license The code of Next-gen Kaldi is using
Apache-2.0 license. However,
we support models from different frameworks. Please check the license of your selected model.
"""
if "-cn" not in filename:
print("filename", filename)
print(filename.split("/")[-1].split("."))
cn_filename = filename.split("/")[-1].split(".")[0] + "-cn.html"
content += f"""
For Chinese users, please visit this address,
which replaces huggingface.co with hf-mirror.com
中国用户, 请访问这个地址
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def to_file_linux(filename: str, files: List[str]):
content = r"""
Flutter Linux APPs for text-to-speech
This page lists the text-to-speech Linux APPs created with Flutter
for sherpa-onnx,
one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APP has the following rule:
- sherpa-onnx-{version}-linux-{arch}-{lang}-tts-{model}.tar.bz2
where
- version: It specifies the current version, e.g., 1.10.11
- arch: Only x86_64 is supported for Linux at present.
- lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
- model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
Note: For text-to-speech engine APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html
Note: Models from
piper have their names prefixed
with vits-piper-. For instance, for the model
vits-piper-en_US-lessac-medium.apk, its original name
in piper is
en_US-lessac-medium.apk, which is available at
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
Note: Models from
MycroftAI/mimic3-voices have their names prefixed
with mimic3-.
Note: Models from
coqui-ai/TTS have their names prefixed
with coqui-.
You can find many more models that have not been converted to sherpa-onnx
at
https://huggingface.co/rhasspy/piper-voices
Note about the license The code of Next-gen Kaldi is using
Apache-2.0 license. However,
we support models from different frameworks. Please check the license of your selected model.
"""
if "-cn" not in filename:
print("filename", filename)
print(filename.split("/")[-1].split("."))
cn_filename = filename.split("/")[-1].split(".")[0] + "-cn.html"
content += f"""
For Chinese users, please visit this address,
which replaces huggingface.co with hf-mirror.com
中国用户, 请访问这个地址
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def to_file_macos_x64(filename: str, files: List[str]):
content = r"""
Flutter macoOS x86_64 APPs for text-to-speech
This page lists the text-to-speech macOS x86_64 APPs created with Flutter
for sherpa-onnx,
one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APP has the following rule:
- sherpa-onnx-{version}-osx-{arch}-{lang}-tts-{model}.tar.bz2
where
- version: It specifies the current version, e.g., 1.10.11
- arch: This page is for x86_64. If you need arm64, please see ./tts-macos-arm64.html
- lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
- model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
Note: For text-to-speech engine APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html
Note: Models from
piper have their names prefixed
with vits-piper-. For instance, for the model
vits-piper-en_US-lessac-medium.apk, its original name
in piper is
en_US-lessac-medium.apk, which is available at
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
Note: Models from
MycroftAI/mimic3-voices have their names prefixed
with mimic3-.
Note: Models from
coqui-ai/TTS have their names prefixed
with coqui-.
You can find many more models that have not been converted to sherpa-onnx
at
https://huggingface.co/rhasspy/piper-voices
Note about the license The code of Next-gen Kaldi is using
Apache-2.0 license. However,
we support models from different frameworks. Please check the license of your selected model.
"""
if "-cn" not in filename:
print("filename", filename)
print(filename.split("/")[-1].split("."))
cn_filename = filename.split("/")[-1].split(".")[0] + "-cn.html"
content += f"""
For Chinese users, please visit this address,
which replaces huggingface.co with hf-mirror.com
中国用户, 请访问这个地址
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def to_file_macos_arm64(filename: str, files: List[str]):
content = r"""
Flutter macoOS arm64 APPs for text-to-speech
This page lists the text-to-speech macOS arm64 APPs created with Flutter
for sherpa-onnx,
one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APP has the following rule:
- sherpa-onnx-{version}-osx-{arch}-{lang}-tts-{model}.tar.bz2
where
- version: It specifies the current version, e.g., 1.10.11
- arch: This page is for arm64. If you need x86_64, please see ./tts-macos-x64.html
- lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
- model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
Note: For text-to-speech engine APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html
Note: Models from
piper have their names prefixed
with vits-piper-. For instance, for the model
vits-piper-en_US-lessac-medium.apk, its original name
in piper is
en_US-lessac-medium.apk, which is available at
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
Note: Models from
MycroftAI/mimic3-voices have their names prefixed
with mimic3-.
Note: Models from
coqui-ai/TTS have their names prefixed
with coqui-.
You can find many more models that have not been converted to sherpa-onnx
at
https://huggingface.co/rhasspy/piper-voices
Note about the license The code of Next-gen Kaldi is using
Apache-2.0 license. However,
we support models from different frameworks. Please check the license of your selected model.
"""
if "-cn" not in filename:
print("filename", filename)
print(filename.split("/")[-1].split("."))
cn_filename = filename.split("/")[-1].split(".")[0] + "-cn.html"
content += f"""
For Chinese users, please visit this address,
which replaces huggingface.co with hf-mirror.com
中国用户, 请访问这个地址
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def to_file_windows(filename: str, files: List[str]):
content = r"""
Flutter Windows APPs for text-to-speech
This page lists the text-to-speech Windows APPs created with Flutter
for sherpa-onnx,
one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APP has the following rule:
- sherpa-onnx-{version}-win-{arch}-{lang}-tts-{model}.tar.bz2
where
- version: It specifies the current version, e.g., 1.10.11
- arch: Only x64 is supported for Windows at present.
- lang: The language supported by this APK, e.g., en for English, zh for Chinese, fr for French, de for German, es for Spanish
- model: The name of the model used in the APK, e.g., vits-ljs, vits-piper-de_DE-thorsten-low, vits-piper-de_DE-thorsten-medium
Note: For text-to-speech engine APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk-engine.html
Note: Models from
piper have their names prefixed
with vits-piper-. For instance, for the model
vits-piper-en_US-lessac-medium.apk, its original name
in piper is
en_US-lessac-medium.apk, which is available at
https://huggingface.co/rhasspy/piper-voices/blob/main/en/en_US/lessac/medium/en_US-lessac-medium.onnx
Note: Models from
MycroftAI/mimic3-voices have their names prefixed
with mimic3-.
Note: Models from
coqui-ai/TTS have their names prefixed
with coqui-.
You can find many more models that have not been converted to sherpa-onnx
at
https://huggingface.co/rhasspy/piper-voices
Note about the license The code of Next-gen Kaldi is using
Apache-2.0 license. However,
we support models from different frameworks. Please check the license of your selected model.
"""
if "-cn" not in filename:
print("filename", filename)
print(filename.split("/")[-1].split("."))
cn_filename = filename.split("/")[-1].split(".")[0] + "-cn.html"
content += f"""
For Chinese users, please visit this address,
which replaces huggingface.co with hf-mirror.com
中国用户, 请访问这个地址
"""
with open(filename, "w") as f:
print(content, file=f)
for x in files:
x = x.replace("huggingface.co", "hf-mirror.com")
x = x.replace("resolve", "blob")
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def get_platform(allFiles: List[str], pattern: str):
ans = []
for f in allFiles:
if pattern in f:
ans.append(f)
return ans
def main():
app = get_all_files("flutter/tts", suffix="*.tar.bz2")
macos = get_platform(app, "macos")
macos_x64 = get_platform(macos, "x86_64")
macos_arm64 = get_platform(macos, "arm64")
windows = get_platform(app, "windows")
linux = get_platform(app, "linux")
android = get_platform(app, "android")
android = sorted(android, key=sort_by_app, reverse=True)
to_file_android("./tts-android.html", android)
to_file_android("./tts-android-cn.html", android)
linux = sorted(linux, key=sort_by_app, reverse=True)
to_file_linux("./tts-linux.html", linux)
to_file_linux("./tts-linux-cn.html", linux)
macos_x64 = sorted(macos_x64, key=sort_by_app, reverse=True)
to_file_macos_x64("./tts-macos-x64.html", macos_x64)
to_file_macos_x64("./tts-macos-x64-cn.html", macos_x64)
macos_arm64 = sorted(macos_arm64, key=sort_by_app, reverse=True)
to_file_macos_arm64("./tts-macos-arm64.html", macos_arm64)
to_file_macos_arm64("./tts-macos-arm64-cn.html", macos_arm64)
windows = sorted(windows, key=sort_by_app, reverse=True)
to_file_windows("./tts-win.html", windows)
to_file_windows("./tts-win-cn.html", windows)
if __name__ == "__main__":
main()