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 1b99b4f commit 18065d0Copy full SHA for 18065d0
2 files changed
src/protocol.py
@@ -215,7 +215,7 @@ def recv(self):
215
# 对比 text_value 和上次的值是否相同
216
if text_value != self.__last_text_value and text_value is not None:
217
print(text_value) # 仅在不同时打印
218
- print("内存:",gc.mem_free())
+ # print("内存:",gc.mem_free())
219
self.__last_text_value = text_value # 更新为最新的 text_value
220
# logger.debug("recv data: ", data)
221
return data
@@ -236,7 +236,7 @@ def hello(self):
236
},
237
"features": {
238
"consistent_sample_rate": True,
239
- "mcpu": True
+ "mcp": True
240
}
241
242
)
src/utils.py
@@ -12,7 +12,7 @@
12
13
14
logger = getLogger(__name__)
15
-
+volume = 7
16
17
# ==================== 音频管理 ====================
18
0 commit comments