mirror of
https://github.com/onyx-and-iris/duckypad-twitch.git
synced 2025-04-03 20:23:47 +01:00
Compare commits
3 Commits
1d6733002b
...
cd133075c0
Author | SHA1 | Date | |
---|---|---|---|
cd133075c0 | |||
588dc11102 | |||
2a4875c662 |
4
.gitignore
vendored
4
.gitignore
vendored
@ -161,8 +161,8 @@ cython_debug/
|
|||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
# configs
|
# configs
|
||||||
configs/*
|
duckypad.toml
|
||||||
!configs/potato
|
streaming_extender.toml
|
||||||
|
|
||||||
# test
|
# test
|
||||||
quick.py
|
quick.py
|
||||||
|
@ -52,8 +52,8 @@ def register_hotkeys(duckypad):
|
|||||||
steps = (
|
steps = (
|
||||||
audio_hotkeys,
|
audio_hotkeys,
|
||||||
scene_hotkeys,
|
scene_hotkeys,
|
||||||
streamlabs_controller_hotkeys,
|
|
||||||
obsws_hotkeys,
|
obsws_hotkeys,
|
||||||
|
streamlabs_controller_hotkeys,
|
||||||
duckypad_hotkeys,
|
duckypad_hotkeys,
|
||||||
)
|
)
|
||||||
[step() for step in steps]
|
[step() for step in steps]
|
||||||
@ -65,7 +65,7 @@ def main():
|
|||||||
with voicemeeterlib.api("potato") as vm:
|
with voicemeeterlib.api("potato") as vm:
|
||||||
with xair_api.connect("MR18", **xair_config) as mixer:
|
with xair_api.connect("MR18", **xair_config) as mixer:
|
||||||
with duckypad_twitch.connect(vm=vm, mixer=mixer) as duckypad:
|
with duckypad_twitch.connect(vm=vm, mixer=mixer) as duckypad:
|
||||||
vm.apply_config("streaming")
|
vm.apply_config("streaming_extender") # extends the streaming config
|
||||||
|
|
||||||
register_hotkeys(duckypad)
|
register_hotkeys(duckypad)
|
||||||
|
|
||||||
|
@ -210,6 +210,30 @@ stateonly = false
|
|||||||
[button-2]
|
[button-2]
|
||||||
stateonly = true
|
stateonly = true
|
||||||
|
|
||||||
|
[vban-in-0]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-1]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-2]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-3]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-4]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-5]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-6]
|
||||||
|
on = false
|
||||||
|
|
||||||
|
[vban-in-7]
|
||||||
|
on = true
|
||||||
|
|
||||||
[vban-out-0]
|
[vban-out-0]
|
||||||
on = false
|
on = false
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# SPDX-FileCopyrightText: 2023-present onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com>
|
# SPDX-FileCopyrightText: 2023-present onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com>
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
__version__ = "1.0.1"
|
__version__ = "1.0.2"
|
||||||
|
@ -12,9 +12,9 @@ class AudioState:
|
|||||||
mute_mics: bool = True
|
mute_mics: bool = True
|
||||||
only_discord: bool = False
|
only_discord: bool = False
|
||||||
only_stream: bool = True
|
only_stream: bool = True
|
||||||
sound_test: bool = True
|
sound_test: bool = False
|
||||||
solo_onyx: bool = True
|
solo_onyx: bool = False
|
||||||
solo_iris: bool = True
|
solo_iris: bool = False
|
||||||
|
|
||||||
ws_to_onyx: bool = False
|
ws_to_onyx: bool = False
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user