fixing bugs and changing device

This commit is contained in:
talksik
2023-04-29 16:08:18 -07:00
parent e195083b76
commit 73cc85fdeb
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ RESPEAKER_RATE = 16000
RESPEAKER_CHANNELS = 2
RESPEAKER_WIDTH = 2
# run getDeviceInfo.py to get index
RESPEAKER_INDEX = 1 # refer to input device id
RESPEAKER_INDEX = 0 # refer to input device id
CHUNK = 1024
WAVE_OUTPUT_FILENAME = "output.wav"
@@ -26,7 +26,6 @@ frames = []
for i in range(0, int(RESPEAKER_RATE / CHUNK * RECORD_SECONDS)):
data = stream.read(CHUNK)
print("read a chunk")
print(data.length)
frames.append(data)
print("* done recording")