├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Justfile ├── LICENSE ├── README.md ├── native ├── nlohmann │ └── json.hpp ├── wenet_stt_lib.cpp └── wenet_stt_lib.h ├── pyproject.toml ├── requirements-build.txt ├── setup.cfg ├── setup.py ├── src └── wenet_stt │ ├── __init__.py │ ├── __main__.py │ ├── utils.py │ └── wrapper.py └── tests ├── pytest.ini ├── test.wav └── test_decode.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/README.md -------------------------------------------------------------------------------- /native/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/native/nlohmann/json.hpp -------------------------------------------------------------------------------- /native/wenet_stt_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/native/wenet_stt_lib.cpp -------------------------------------------------------------------------------- /native/wenet_stt_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/native/wenet_stt_lib.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- 1 | cmake>=3.15 2 | ninja 3 | scikit-build~=0.12 4 | setuptools 5 | wheel 6 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/setup.py -------------------------------------------------------------------------------- /src/wenet_stt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/src/wenet_stt/__init__.py -------------------------------------------------------------------------------- /src/wenet_stt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/src/wenet_stt/__main__.py -------------------------------------------------------------------------------- /src/wenet_stt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/src/wenet_stt/utils.py -------------------------------------------------------------------------------- /src/wenet_stt/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/src/wenet_stt/wrapper.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/tests/test.wav -------------------------------------------------------------------------------- /tests/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daanzu/wenet_stt_python/HEAD/tests/test_decode.py --------------------------------------------------------------------------------