@livx.cc/agentx 0.96.13 → 0.96.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +6 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -7214,7 +7214,12 @@ var AecDuplexAudio = class {
|
|
|
7214
7214
|
});
|
|
7215
7215
|
this.proc.stdout.on("data", (chunk) => onChunk(chunk));
|
|
7216
7216
|
this.proc.stderr.on("data", (d) => {
|
|
7217
|
-
for (const ln of String(d).split("\n"))
|
|
7217
|
+
for (const ln of String(d).split("\n")) {
|
|
7218
|
+
const s = ln.trim();
|
|
7219
|
+
if (!s) continue;
|
|
7220
|
+
if (/mic access granted:\s*false/i.test(s)) log16.warn("mic-aec: microphone permission DENIED \u2014 grant it in System Settings \u2192 Privacy & Security \u2192 Microphone for your terminal, then restart it");
|
|
7221
|
+
else log16.debug(`mic-aec: ${s}`);
|
|
7222
|
+
}
|
|
7218
7223
|
});
|
|
7219
7224
|
}
|
|
7220
7225
|
stop() {
|