We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d2457 commit 6158869Copy full SHA for 6158869
README.md
@@ -13,6 +13,20 @@ pip install pyaudio
13
pip install openwakeword==0.6.0
14
conda env update -f voice_attack.yaml
15
16
+Run this, find your mic, change the sample rate
17
+https://github.com/R1nge/Wolves-Emperor/blob/1.21/main.py#L43
18
+```
19
+import pyaudio
20
+
21
+audio = pyaudio.PyAudio()
22
23
+for i in range(audio.get_device_count()):
24
+ info = audio.get_device_info_by_index(i)
25
+ print(f"Device {i}: {info['name']}, Max Input Channels: {info['maxInputChannels']}, Default Sample Rate: {info['defaultSampleRate']}")
26
27
+audio.terminate()
28
29
30
Run the python server
31
python main.py
32
0 commit comments