├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── .idea ├── .gitignore ├── Voice.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Core ├── HotWords.py ├── config.py ├── format.py ├── logger.py └── utlis.py ├── README.md ├── fastapi_app.py ├── logs └── logger-script.log ├── main.py ├── models └── 模型转换 │ ├── 00-01-sherpa-add-model-metadata.py │ ├── 00-02-sherpa-convert-tokens.py │ ├── 01-01-transcribe-core.py │ ├── 01-02-生成字幕-转录.bat │ ├── 01-03-生成字幕-从txt和json.py │ ├── 02-01-sherpa-onnx-offline-websocket-server.exe │ ├── 02-02-Server 启动.bat │ ├── 02-03-Client 转录.py │ ├── 03-01-标点模型测试.py │ └── readme.txt ├── packer.bat ├── requirements.txt ├── resource ├── logo.ico ├── wx.jpg └── zfb.jpg ├── runtime └── ffmpeg.exe ├── startup_param.yaml ├── test.py └── voice_app.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Voice.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/Voice.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Core/HotWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/Core/HotWords.py -------------------------------------------------------------------------------- /Core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/Core/config.py -------------------------------------------------------------------------------- /Core/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/Core/format.py -------------------------------------------------------------------------------- /Core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/Core/logger.py -------------------------------------------------------------------------------- /Core/utlis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/Core/utlis.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/README.md -------------------------------------------------------------------------------- /fastapi_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/fastapi_app.py -------------------------------------------------------------------------------- /logs/logger-script.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/logs/logger-script.log -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/main.py -------------------------------------------------------------------------------- /models/模型转换/00-01-sherpa-add-model-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/00-01-sherpa-add-model-metadata.py -------------------------------------------------------------------------------- /models/模型转换/00-02-sherpa-convert-tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/00-02-sherpa-convert-tokens.py -------------------------------------------------------------------------------- /models/模型转换/01-01-transcribe-core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/01-01-transcribe-core.py -------------------------------------------------------------------------------- /models/模型转换/01-02-生成字幕-转录.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/01-02-生成字幕-转录.bat -------------------------------------------------------------------------------- /models/模型转换/01-03-生成字幕-从txt和json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/01-03-生成字幕-从txt和json.py -------------------------------------------------------------------------------- /models/模型转换/02-01-sherpa-onnx-offline-websocket-server.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/02-01-sherpa-onnx-offline-websocket-server.exe -------------------------------------------------------------------------------- /models/模型转换/02-02-Server 启动.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/02-02-Server 启动.bat -------------------------------------------------------------------------------- /models/模型转换/02-03-Client 转录.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/02-03-Client 转录.py -------------------------------------------------------------------------------- /models/模型转换/03-01-标点模型测试.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/03-01-标点模型测试.py -------------------------------------------------------------------------------- /models/模型转换/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/models/模型转换/readme.txt -------------------------------------------------------------------------------- /packer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/packer.bat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/resource/logo.ico -------------------------------------------------------------------------------- /resource/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/resource/wx.jpg -------------------------------------------------------------------------------- /resource/zfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/resource/zfb.jpg -------------------------------------------------------------------------------- /runtime/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/runtime/ffmpeg.exe -------------------------------------------------------------------------------- /startup_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/startup_param.yaml -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/test.py -------------------------------------------------------------------------------- /voice_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiao1iang/Voice/HEAD/voice_app.py --------------------------------------------------------------------------------