impress_asr_input/models/models.config.json
impressionyang 7c51542918 Initial commit: Impress ASR Input 项目基础框架
功能:
- 基于 ONNX 的语音识别引擎
- 多语言支持(中文、英文、日语、韩语)
- 模型加载器(支持 SenseVoice/Whisper/Paraformer)
- 音频采集和处理模块(VAD、重采样、归一化)
- 文本输出模块(剪贴板)
- CLI 命令行工具
- Electron GUI 界面
- Windows x64 打包配置

文档:
- PRD 产品需求文档
- README 项目说明
- 开发指南
- Windows 构建指南

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-20 16:10:11 +08:00

31 lines
963 B
JSON

{
"models": [
{
"name": "SenseVoice",
"file": "sensevoice.onnx",
"languages": ["zh", "en", "ja", "ko"],
"sampleRate": 16000,
"description": "阿里达摩院多语言语音识别模型(推荐)",
"downloadUrl": "https://huggingface.co/FunAudioLLM/SenseVoice"
},
{
"name": "Whisper",
"file": "whisper.onnx",
"languages": ["zh", "en", "ja", "ko", "de", "fr", "es"],
"sampleRate": 16000,
"description": "OpenAI 多语言语音识别模型",
"downloadUrl": "https://huggingface.co/onnx-community/whisper-base"
},
{
"name": "Paraformer",
"file": "paraformer.onnx",
"languages": ["zh"],
"sampleRate": 16000,
"description": "阿里达摩院中文语音识别模型",
"downloadUrl": "https://www.modelscope.cn/models/damo/speech_paraformer-large-vad-punct"
}
],
"defaultModel": "sensevoice.onnx",
"modelsDirectory": "./models"
}