World of Warcraft - Quest Reader
This WoW Addon will read the quest text with meant of AI text-to-speech API(s).
Preconditions (what do you need)
Installation
- Unzip the WoW_Addon.zip to
<World of Warcraft>\_retail_\Interface\AddOns
- Download the companion-windows-amd64.exe-Application and move them into a directory you want
- Create a file named
config.yml
in the same directory as the Companion-Application
- Insert at least the AWS-Credentials
- For more options see the configuration section
- Start the Companion-Application
- Start World of Warcraft
- Go to Keybinding settings in WoW
- Set the key for Rainu Quest Reader > Collect last quest information to [ctrl]+<F12>
(or what ever you have configured - see key.addon in configuration section!)
- Now if you open a quests you can press the read button (<PAGE DOWN> - or what ever you configured - see key.read in configuration section!)
Configuration
Configuration |
Default |
Mandatory |
Description |
debug |
false |
false |
Is the application running in Debug-Mode? |
logLevel |
4 |
false |
The used logging level. ( Panic(0); Fatal(1); Error(2); Warn(3); Info(4); Debug(5);Trace(6) ) |
sound.directory |
<Companion-Application>/sounds |
false |
The directory where the generated sound files will be stored. |
sound.aws.region |
|
true |
The AWS region which should be used. |
sound.aws.key |
|
true |
The AWS key which should be used. |
sound.aws.secret |
|
true |
The AWS secret which should be used. |
sound.aws.speechRate |
100% |
false |
The speech rate of generated speech. (x-slow, slow, medium, fast, x-fast, 20% - 200%) |
key.read |
<PAGE DOWN> |
false |
The keybinding when the application should start reading. |
key.addon |
[ctrl]+<F12> |
false |
The Keybinding for the addon. |
Example config.yml
key:
read: "[ctrl]+<F12>"
sound:
dir: /tmp/wow
aws:
region: "<region>"
key: "<key>"
secret: "<secret>"
speechRate: 150%
How it works
The Companion-Application observe the clipboard. The addon will collect the quest data while you playing WoW.
If the shortcut (key.addon) is pressed, the addon opens a hidden window within all quest information as text selected.
Then the Companion-Application will copy the selected content into the clipboard by "pressing" <CTRL>+<C>.
The quest data is copied into the clipboard and the application will detect that content and will generate and
play the speech. Because the generation will potential cost some money, the sound file fill be persisted inside the
configured sound folder. So that play the same quest multiple times will not cost for every playing.
Build
GOOS=windows GOARCH=amd64 go build -a -o companion.exe ./app/companion