#!/usr/bin/env python3
import os
import re
from pathlib import Path
from typing import List
BASE_URL = "https://huggingface.co/csukuangfj/sherpa-onnx-apk/resolve/main/"
from dataclasses import dataclass
@dataclass
class APK:
major: int
minor: int
patch: int
arch: str
lang: str
src: str # piper, coqui
def __init__(self, s):
s = str(s)
if "tts-engine-" in s:
s = s[len("tts-engine-") + 1 :]
else:
s = s[len("tts-engine") :]
split = s.split("-")
self.major, self.minor, self.patch = list(map(int, split[2].split(".")))
self.arch = split[3]
self.lang = split[4]
self.src = split[7]
if "arm" in s:
self.arch += "-" + split[4]
self.lang = split[5]
self.src = split[8]
if "armeabi" in self.arch:
self.arch = "y" + self.arch
if "arm64" in self.arch:
self.arch = "z" + self.arch
def sort_by_apk(x):
x = APK(x)
return (x.major, x.minor, x.patch, x.arch, -ord(x.src[0]), -ord(x.lang[0]))
def generate_url(files: List[str]) -> List[str]:
ans = []
base = BASE_URL
for f in files:
ans.append(base + str(f))
return ans
def get_all_files(d: List[str], suffix: str) -> List[str]:
files = []
for k in d:
files += list(Path(k).glob(suffix))
ans = sorted(files, key=sort_by_apk, reverse=True)
return list(map(lambda x: BASE_URL + str(x), ans))
def to_file(filename: str, files: List[str]):
content = r"""
APKs for text-to-speech engine
This page lists the text-to-speech engine APKs 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-engine-{model}.apk
where
- version: It specifies the current version, e.g., 1.8.7
- 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 standalone text-to-speech APKs, please see
https://k2-fsa.github.io/sherpa/onnx/tts/apk.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
"""
if "-cn" not in filename:
content += """
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:
name = x.rsplit("/", maxsplit=1)[-1]
print(f'{name}
', file=f)
def main():
apk = get_all_files(["tts-engine", "tts-engine-2"], suffix="*.apk")
to_file("./apk-engine.html", apk)
# for Chinese users
apk2 = []
for a in apk:
a = a.replace("huggingface.co", "hf-mirror.com")
a = a.replace("resolve", "blob")
apk2.append(a)
to_file("./apk-engine-cn.html", apk2)
if __name__ == "__main__":
main()