├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── MANIFEST.in ├── README.md ├── docs └── MULTIPLATFORM.md ├── example.py ├── requirements.txt ├── resource ├── linh_ref_long.wav └── u2.gif ├── scripts └── build_multiplatform.py ├── setup.py ├── src ├── __init__.py ├── cli.py ├── core.py └── streaming.py └── test_library.py /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/README.md -------------------------------------------------------------------------------- /docs/MULTIPLATFORM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/docs/MULTIPLATFORM.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/example.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/linh_ref_long.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/resource/linh_ref_long.wav -------------------------------------------------------------------------------- /resource/u2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/resource/u2.gif -------------------------------------------------------------------------------- /scripts/build_multiplatform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/scripts/build_multiplatform.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/src/cli.py -------------------------------------------------------------------------------- /src/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/src/core.py -------------------------------------------------------------------------------- /src/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/src/streaming.py -------------------------------------------------------------------------------- /test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nguyenvulebinh/ViStreamASR/HEAD/test_library.py --------------------------------------------------------------------------------