Volver al ranking

sxzxs/Real-time-translation-typing

AutoHotkey

实时打字翻译软件、语音实时打字、语音实时翻译、LOL 语音打字

autohotkeytranslatorswindowslol
Crecimiento de estrellas
Estrellas
1.8k
Forks
163
Crecimiento semanal
Issues
21
5001k1.5k
ago 2023jul 2024jul 2025jul 2026
README
████████╗██╗   ██╗██████╗ ██╗███╗   ██╗ ██████╗     ████████╗██████╗  █████╗ ███╗   ██╗███████╗██╗      █████╗ ████████╗██╗ ██████╗ ███╗   ██╗
╚══██╔══╝╚██╗ ██╔╝██╔══██╗██║████╗  ██║██╔════╝     ╚══██╔══╝██╔══██╗██╔══██╗████╗  ██║██╔════╝██║     ██╔══██╗╚══██╔══╝██║██╔═══██╗████╗  ██║
   ██║    ╚████╔╝ ██████╔╝██║██╔██╗ ██║██║  ███╗       ██║   ██████╔╝███████║██╔██╗ ██║███████╗██║     ███████║   ██║   ██║██║   ██║██╔██╗ ██║
   ██║     ╚██╔╝  ██╔═══╝ ██║██║╚██╗██║██║   ██║       ██║   ██╔══██╗██╔══██║██║╚██╗██║╚════██║██║     ██╔══██║   ██║   ██║██║   ██║██║╚██╗██║
   ██║      ██║   ██║     ██║██║ ╚████║╚██████╔╝       ██║   ██║  ██║██║  ██║██║ ╚████║███████║███████╗██║  ██║   ██║   ██║╚██████╔╝██║ ╚████║
   ╚═╝      ╚═╝   ╚═╝     ╚═╝╚═╝  ╚═══╝ ╚═════╝        ╚═╝   ╚═╝  ╚═╝╚═╝  ╚═╝╚═╝  ╚═══╝╚══════╝╚══════╝╚═╝  ╚═╝   ╚═╝   ╚═╝ ╚═════╝ ╚═╝  ╚═══╝

想体验更强的版本可以联系【3261404579@qq.com】持续迭代中

图 a 图 a

图 b

图 c

图 d

Real-time-translation-typing

图 1

图 0

使用

  • 鼠标拖动实时打字翻译-网页版(推荐).ah2Autohotkey.exe上面
  • 或者修改实时打字翻译-网页版(推荐).ah2的文件名为实时打字翻译-网页版(推荐).ahk,然后修改Auohotkey.exe的文件名为实时打字翻译-网页版(推荐).exe 双击实时打字翻译-网页版(推荐).exe即可

功能

  • 实时打字翻译
  • 实时语音转文字并翻译
  • LOL 语音转文字输入

快捷键

  • ALT Y: 打开
  • ALT ENTER:发音
  • ENTER: 输出翻译文本
  • CTRL ENTER: 输出原始文本
  • ESC: 退出
  • TAB: 切换另一个翻译API
  • CTRL F7: 网页版调试

网页版额外快捷键

  • CTRL + C :复制结果
  • CTRL + ALT + Y :翻译当前粘贴板
  • CTRL + V:打开状态下,输入粘贴板内容
  • ALT + I:语音输入
  • xbutton1: LOL语音输入触发
  • xbutton2: LOL语音输入结束

网页调用版本(推荐)

目前支持 搜狗、百度、有道

环境 版本
系统 需要win10或者安装 webview2 runtime
源码运行需要 ahk 版本 autohotkey v2H

API版本(不推荐)

通过配置文件来配置 /config/setting.json

  • 选择主翻译API
    "cd" : "youdao"   ## 目前支持 "baidu", "google"(需要科学上网,且美国节点), "youdao", "sougou"

备选API需配置 is_open 为 1 如果没反应,可能api在维护,可以切换另一个使用 目前免费的是有道和搜狗和谷歌, 有道是直接调用的api速度比较快,搜狗是爬虫(速度较慢),谷歌需要翻墙 百度结果很不错,但是需要注册(免费100w字符/月)

  • 有道词典
http://fanyi.youdao.com/translate?smartresult=dict&smartresult=rule&smartresult=ugc&sessionFrom=null
{
    "is_open" : 1
}
https://fanyi.sogou.com/text?keyword=%E4%BD%A0%E5%A5%BD&transfrom=auto&transto=en&model=general
    "sougou" :
    {
        "is_open" : 1,
        "is_real_time_translate" : 1
    },
  • 谷歌
{
    "is_open" : 0,
    "is_real_time_translate" : 0
}
{
    "is_open" : 0,
    "BaiduFanyiAPPID" : "xxxxx",
    "BaiduFanyiAPPSEC": "xxxxx",
    "is_real_time_translate" : 0
}

因为百度使用次数有限额,因此通过 is_baidu_real_time_translate 来配置是否实时触发翻译 当配置 0 时,需要输入 空格 键 主动翻译, 建议输入最后键入空格

  • 切换

tab键,从配置和打开的API切换

Repositorios relacionados
LGUG2Z/komorebi

A tiling window manager for Windows 🍉

Rustcrates.ioOthertiling-window-managerwindows
lgug2z.github.io/komorebi/
14.9k338
AutoHotkey/AutoHotkey

AutoHotkey - macro-creation and automation-oriented scripting utility for Windows.

C++GNU General Public License v2.0autohotkeyc-plus-plus
autohotkey.com
12.8k1.1k
cs-lazy-tools/ChatGPT-On-CS

基于大模型的智能对话客服工具,支持微信、拼多多、千牛、哔哩哔哩、抖音企业号、抖音、抖店、微博聊天、小红书专业号运营、小红书、知乎等平台接入,可选择 GPT3.5/GPT4.0/ 懒人百宝箱 (后续会支持更多平台),能处理文本、语音和图片,通过插件访问操作系统和互联网等外部资源,支持基于自有知识库定制企业 AI 应用。

TypeScriptnpmGNU Affero General Public License v3.0aiautomation
xingsuancn.com
4.2k537
abgox/InputTip

规则驱动的输入法状态管理器 · 即时 · 强大 · 高效

AutoHotkeyGNU Affero General Public License v3.0cursorinput
inputtip.abgox.com
3.3k86
Pulover/PuloversMacroCreator

Automation Utility - Recorder & Script Generator

AutoHotkeyOtherahkautohotkey
macrocreator.com
2k276
Vonng/Capslock

Make Capslock Great Again!

HTMLApache License 2.0capslockcapslock-hyper
capslock.vonng.com
1.6k279
wo52616111/capslock-plus

An efficiency tool that provides various functions by enhancing the Caps Lock key into a modifier key.

AutoHotkeyGNU General Public License v2.0capslockautohotkey
capslox.com/capslock-plus/
1.3k216
Lailloken/Exile-UI

UI and QoL overlay for Path of Exile 1 and 2. Emphasizes ease of use, minimalist design, and seamless integration. Formerly Lailloken UI.

AutoHotkeyMIT Licensepathofexilepoe
1.3k70
Nigh/I-wanna-clean-keyboard

Block the keyboard input while you were eating instant noodles on your laptop keyboard.

HTMLMIT Licenseautohotkeywebgui
1.2k40
repeats/Repeat

Cross-platform mouse/keyboard record/replay and automation hotkeys/macros creation, and more advanced automation features.

JavaMavenApache License 2.0hotkeyreplay
1.1k81
hui-Zz/RunAny

【RunAny】一劳永逸的快速启动软件,拥有三键启动、一键直达、规则启动、批量搜索、全局热键、短语输出、热键映射、脚本插件等功能

AutoHotkeyahkrun
hui-zz.github.io/RunAny
1.1k103
zclucas/RMT

RMT (RuoMengTu) is a free, open-source macro tool built on AHKv2. Let the code handle the tedious work—you have more meaningful things to do.

HTMLGNU Affero General Public License v3.0key-macrosautomation
zclucas.github.io/RMT/
1.1k88