{"id":31920332,"url":"https://github.com/ireoo/autotalk.core","last_synced_at":"2025-10-13T21:58:45.434Z","repository":{"id":293028303,"uuid":"981059965","full_name":"Ireoo/autotalk.core","owner":"Ireoo","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-13T09:49:28.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-13T10:43:45.636Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ireoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-10T08:47:56.000Z","updated_at":"2025-05-13T09:47:43.000Z","dependencies_parsed_at":"2025-05-13T10:43:50.557Z","dependency_job_id":"d41d150b-493e-40b1-b1ba-64bc6be47428","html_url":"https://github.com/Ireoo/autotalk.core","commit_stats":null,"previous_names":["ireoo/autotalk.core"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Ireoo/autotalk.core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ireoo%2Fautotalk.core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ireoo%2Fautotalk.core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ireoo%2Fautotalk.core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ireoo%2Fautotalk.core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ireoo","download_url":"https://codeload.github.com/Ireoo/autotalk.core/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ireoo%2Fautotalk.core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017012,"owners_count":26085952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-13T21:58:35.660Z","updated_at":"2025-10-13T21:58:45.418Z","avatar_url":"https://github.com/Ireoo.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AutoTalk 语音识别应用\r\n\r\n基于Python+Qt实现的跨平台语音识别桌面应用，用于连接语音识别服务器，实现实时语音识别功能。\r\n\r\n## 功能特点\r\n\r\n- 服务器连接设置：可配置服务器地址和端口\r\n- 语言选择：支持中文、英文、日语、法语、德语等多种语言\r\n- 音频设备选择：可选择麦克风和扬声器设备\r\n- 音频频谱图：实时显示音频频谱\r\n- 语音识别：采集音频并发送至服务器进行识别\r\n- 识别结果显示：显示服务器返回的识别文本\r\n\r\n## 安装依赖\r\n\r\n1. 确保已安装Python 3.6+\r\n2. 安装所需依赖库：\r\n\r\n```bash\r\npip install PyQt5 numpy pyaudio websocket-client\r\n```\r\n\r\n注意：PyAudio可能需要额外的系统依赖：\r\n- Windows：可能需要Visual C++ Build Tools\r\n- Linux：需要安装portaudio19-dev\r\n- macOS：需要安装portaudio\r\n\r\n## 使用方法\r\n\r\n1. 启动应用：\r\n\r\n```bash\r\npython autotalk_app.py\r\n```\r\n\r\n2. 配置服务器连接：\r\n   - 输入服务器地址和端口（默认为127.0.0.1:3000）\r\n   - 点击\"连接服务器\"按钮\r\n\r\n3. 选择语言和音频设备：\r\n   - 从下拉列表中选择识别语言\r\n   - 选择麦克风设备\r\n\r\n4. 录制和识别音频：\r\n   - 点击\"开始录音\"按钮开始录制\r\n   - 说话或播放要识别的音频\r\n   - 点击\"识别语音\"按钮发送音频数据进行识别\r\n   - 或点击\"停止录音\"按钮停止录制\r\n\r\n5. 识别结果将显示在\"识别结果\"区域\r\n\r\n## 服务器通信协议\r\n\r\n应用通过WebSocket协议与服务器通信：\r\n- 客户端发送包含语言代码和音频数据的JSON\r\n- 服务器返回包含识别文本的JSON或纯文本\r\n\r\n## 故障排除\r\n\r\n- 如果无法连接到服务器：\r\n  - 确认服务器地址和端口是否正确\r\n  - 检查服务器是否已启动\r\n  - 检查网络连接和防火墙设置\r\n\r\n- 如果无法录制音频：\r\n  - 确认麦克风权限已授予给应用\r\n  - 尝试选择不同的麦克风设备\r\n  - 检查系统音频设置 ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fireoo%2Fautotalk.core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fireoo%2Fautotalk.core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fireoo%2Fautotalk.core/lists"}