#!/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 short_name: str def __init__(self, s): # sherpa-onnx-1.10.0-osx-arm64-asr-zh-zipformer2.app.tar.bz2 # sherpa-onnx-1.10.0-osx-x86_64-asr-en-zipformer2.app.tar.bz2 # sherpa-onnx-1.10.0-win-x64-asr-fr-zipformer.tar.bz2 s = str(s)[len("flutter/asr/") :] split = s.split("-") self.major, self.minor, self.patch = list(map(int, split[2].split("."))) self.os = split[3] self.arch = split[4] self.lang = split[6] self.short_name = split[7] def sort_by_app(x): x = APP(x) return (x.major, x.minor, x.patch, x.os, x.arch, x.lang, x.short_name) 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: str, suffix: str) -> List[str]: ans = sorted(Path(d).glob(suffix), key=sort_by_app, reverse=False) return list(map(lambda x: BASE_URL + str(x), ans)) def to_file(filename: str, files: List[str]): content = r"""

Flutter Apps for streaming speech recognition

This page lists the streaming speech recognition Flutter Apps for sherpa-onnx, one of the deployment frameworks of the Next-gen Kaldi project.
The name of an App has the following rule: where
You can download all supported models from https://github.com/k2-fsa/sherpa-onnx/releases/tag/asr-models

App Comment Model
sherpa-onnx-x.y.z-osx-arm64-asr-bilingual_zh_en-zipformer.app.tar.bz2 It supports both English and Chinese. sherpa-onnx-streaming-zipformer-bilingual-zh-en-2023-02-20.tar.bz2
sherpa-onnx-x.y.z-osx-arm64-asr-fr-zipformer.app.tar.bz2 It supports only French. sherpa-onnx-streaming-zipformer-fr-2023-04-14.tar.bz2
sherpa-onnx-x.y.z-osx-arm64-asr-zh-zipformer2.app.tar.bz2 It supports only Chinese. icefall-asr-zipformer-streaming-wenetspeech-20230615.tar.bz2
sherpa-onnx-x.y.z-osx-arm64-asr-en-zipformer2.app.tar.bz2 It supports only English. sherpa-onnx-streaming-zipformer-en-2023-06-26.tar.bz2


""" 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(): app = get_all_files("flutter/asr", suffix="*.tar.bz2") to_file("./app-asr.html", app) # for Chinese users app2 = [] for a in app: a = a.replace("huggingface.co", "hf-mirror.com") a = a.replace("resolve", "blob") app2.append(a) to_file("./app-asr-cn.html", app2) if __name__ == "__main__": main()