mirror of
https://github.com/onyx-and-iris/nvda-addon-voicemeeter.git
synced 2026-04-19 09:33:30 +00:00
Compare commits
4 Commits
main
...
770a7742a2
| Author | SHA1 | Date | |
|---|---|---|---|
| 770a7742a2 | |||
| 2ca201af3a | |||
| 15a1747921 | |||
| bac1fb09ec |
46
README.md
46
README.md
@@ -1,3 +1,49 @@
|
|||||||
# NVDA Addon Voicemeeter
|
# NVDA Addon Voicemeeter
|
||||||
|
|
||||||
Control Voicemeeter GUI with customisable hotkeys.
|
Control Voicemeeter GUI with customisable hotkeys.
|
||||||
|
|
||||||
|
## Keybinds
|
||||||
|
|
||||||
|
### Controllers
|
||||||
|
|
||||||
|
- `NVDA+alt+s`: Enable strip mode
|
||||||
|
- `NVDA+alt+b`: Enable bus mode.
|
||||||
|
|
||||||
|
- `NVDA+alt+1`: Enable controller for channel 1 (strip|bus)
|
||||||
|
- `NVDA+alt+2`: Enable controller for channel 2 (strip|bus)
|
||||||
|
- `NVDA+alt+3`: Enable controller for channel 3 (strip|bus)
|
||||||
|
- `NVDA+alt+4`: Enable controller for channel 4 (strip|bus)
|
||||||
|
- `NVDA+alt+5`: Enable controller for channel 5 (strip|bus)
|
||||||
|
- `NVDA+alt+6`: Enable controller for channel 6 (strip|bus)
|
||||||
|
- `NVDA+alt+7`: Enable controller for channel 7 (strip|bus)
|
||||||
|
- `NVDA+alt+8`: Enable controller for channel 8 (strip|bus)
|
||||||
|
|
||||||
|
### Slider Modes
|
||||||
|
|
||||||
|
- `NVDA+alt+g`: Enable gain slider mode.
|
||||||
|
- `NVDA+alt+c`: Enable comp slider mode.
|
||||||
|
- `NVDA+alt+t`: Enable gate sldier mode.
|
||||||
|
- `NVDA+alt+d`: Enable denoiser slider mode.
|
||||||
|
- `NVDA+alt+a`: Enable audibility slider mode.
|
||||||
|
|
||||||
|
### Sliders
|
||||||
|
|
||||||
|
- `NVDA+shift+upArrow`: Move slider up by 1 step
|
||||||
|
- `NVDA+shift+downArrow`: Move slider down by 1 step
|
||||||
|
- `NVDA+shift+alt+upArrow`: Move slider up by 0.1 step
|
||||||
|
- `NVDA+shift+alt+downArrow`: Move slider down by 0.1 step
|
||||||
|
- `NVDA+shift+control+upArrow`: Move slider up by 3 steps
|
||||||
|
- `NVDA+shift+control+downArrow`: Move slider down by 3 steps
|
||||||
|
|
||||||
|
### Channel Parameters
|
||||||
|
|
||||||
|
- `NVDA+shift+o`: Mono
|
||||||
|
- `NVDA+shift+s`: Solo
|
||||||
|
- `NVDA+shift+m`: Mute
|
||||||
|
- `NVDA+shift+c`: MC
|
||||||
|
- `NVDA+shift+k`: Karaoke
|
||||||
|
|
||||||
|
### Announcements
|
||||||
|
|
||||||
|
- `NVDA+shift+q`: Announce current controller.
|
||||||
|
- `NVDA+shift+a`: Announce Voicemeeter kind.
|
||||||
|
|||||||
@@ -37,5 +37,5 @@ class Binds:
|
|||||||
def call(self, fn, *args, ok=(0,)):
|
def call(self, fn, *args, ok=(0,)):
|
||||||
retval = fn(*args)
|
retval = fn(*args)
|
||||||
if retval not in ok:
|
if retval not in ok:
|
||||||
raise VMCAPIError(fn.bind_namebind_, retval)
|
raise VMCAPIError(fn.__name__, retval)
|
||||||
return retval
|
return retval
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ addon_info = {
|
|||||||
The add-on requires Voicemeeter to be installed."""
|
The add-on requires Voicemeeter to be installed."""
|
||||||
),
|
),
|
||||||
# version
|
# version
|
||||||
"addon_version": "0.3",
|
"addon_version": "0.4",
|
||||||
# Author(s)
|
# Author(s)
|
||||||
"addon_author": "onyx-and-iris <code@onyxandiris.online>",
|
"addon_author": "onyx-and-iris <code@onyxandiris.online>",
|
||||||
# URL for the add-on documentation support
|
# URL for the add-on documentation support
|
||||||
|
|||||||
Reference in New Issue
Block a user