惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(google-meet): clamp audio buffer config · openclaw/op...
steipete · 2026-05-04 · via Recent Commits to openclaw:main

@@ -28,6 +28,7 @@ export type GoogleMeetConfig = {

2828

chrome: {

2929

audioBackend: "blackhole-2ch";

3030

audioFormat: GoogleMeetChromeAudioFormat;

31+

audioBufferBytes: number;

3132

launch: boolean;

3233

browserProfile?: string;

3334

guestName: string;

@@ -86,7 +87,15 @@ export type GoogleMeetConfig = {

8687

};

8788

};

888989-

export const DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND = [

90+

const SOX_DEFAULT_BUFFER_BYTES = 8192;

91+

const SOX_MIN_BUFFER_BYTES = 17;

92+

export const DEFAULT_GOOGLE_MEET_AUDIO_BUFFER_BYTES = SOX_DEFAULT_BUFFER_BYTES / 2;

93+94+

function withSoxBuffer(command: readonly string[], bufferBytes: number): string[] {

95+

return [command[0] ?? "sox", "-q", "--buffer", String(bufferBytes), ...command.slice(2)];

96+

}

97+98+

const DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND_BASE = [

9099

"sox",

91100

"-q",

92101

"-t",

@@ -106,7 +115,7 @@ export const DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND = [

106115

"-",

107116

] as const;

108117109-

export const DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND = [

118+

const DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND_BASE = [

110119

"sox",

111120

"-q",

112121

"-t",

@@ -126,7 +135,7 @@ export const DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND = [

126135

"BlackHole 2ch",

127136

] as const;

128137129-

const LEGACY_GOOGLE_MEET_AUDIO_INPUT_COMMAND = [

138+

const LEGACY_GOOGLE_MEET_AUDIO_INPUT_COMMAND_BASE = [

130139

"rec",

131140

"-q",

132141

"-t",

@@ -142,7 +151,7 @@ const LEGACY_GOOGLE_MEET_AUDIO_INPUT_COMMAND = [

142151

"-",

143152

] as const;

144153145-

const LEGACY_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND = [

154+

const LEGACY_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND_BASE = [

146155

"play",

147156

"-q",

148157

"-t",

@@ -158,6 +167,16 @@ const LEGACY_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND = [

158167

"-",

159168

] as const;

160169170+

export const DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND = withSoxBuffer(

171+

DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND_BASE,

172+

DEFAULT_GOOGLE_MEET_AUDIO_BUFFER_BYTES,

173+

);

174+175+

export const DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND = withSoxBuffer(

176+

DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND_BASE,

177+

DEFAULT_GOOGLE_MEET_AUDIO_BUFFER_BYTES,

178+

);

179+161180

const DEFAULT_GOOGLE_MEET_CHROME_AUDIO_FORMAT: GoogleMeetChromeAudioFormat = "pcm16-24khz";

162181

const DEFAULT_GOOGLE_MEET_BARGE_IN_RMS_THRESHOLD = 650;

163182

const DEFAULT_GOOGLE_MEET_BARGE_IN_PEAK_THRESHOLD = 2500;

@@ -177,6 +196,7 @@ const DEFAULT_GOOGLE_MEET_CONFIG: GoogleMeetConfig = {

177196

chrome: {

178197

audioBackend: "blackhole-2ch",

179198

audioFormat: DEFAULT_GOOGLE_MEET_CHROME_AUDIO_FORMAT,

199+

audioBufferBytes: DEFAULT_GOOGLE_MEET_AUDIO_BUFFER_BYTES,

180200

launch: true,

181201

guestName: "OpenClaw Agent",

182202

reuseExistingTab: true,

@@ -361,16 +381,36 @@ function resolveChromeAudioFormat(value: unknown): GoogleMeetChromeAudioFormat |

361381

}

362382

}

363383364-

function defaultAudioInputCommand(format: GoogleMeetChromeAudioFormat): readonly string[] {

365-

return format === "g711-ulaw-8khz"

366-

? LEGACY_GOOGLE_MEET_AUDIO_INPUT_COMMAND

367-

: DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND;

384+

function resolveAudioBufferBytes(value: unknown, fallback: number): number {

385+

const number = resolveNumber(value, fallback);

386+

if (!Number.isFinite(number) || number <= 0) {

387+

return fallback;

388+

}

389+

return Math.max(SOX_MIN_BUFFER_BYTES, Math.trunc(number));

390+

}

391+392+

function defaultAudioInputCommand(

393+

format: GoogleMeetChromeAudioFormat,

394+

bufferBytes: number,

395+

): string[] {

396+

return withSoxBuffer(

397+

format === "g711-ulaw-8khz"

398+

? LEGACY_GOOGLE_MEET_AUDIO_INPUT_COMMAND_BASE

399+

: DEFAULT_GOOGLE_MEET_AUDIO_INPUT_COMMAND_BASE,

400+

bufferBytes,

401+

);

368402

}

369403370-

function defaultAudioOutputCommand(format: GoogleMeetChromeAudioFormat): readonly string[] {

371-

return format === "g711-ulaw-8khz"

372-

? LEGACY_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND

373-

: DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND;

404+

function defaultAudioOutputCommand(

405+

format: GoogleMeetChromeAudioFormat,

406+

bufferBytes: number,

407+

): string[] {

408+

return withSoxBuffer(

409+

format === "g711-ulaw-8khz"

410+

? LEGACY_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND_BASE

411+

: DEFAULT_GOOGLE_MEET_AUDIO_OUTPUT_COMMAND_BASE,

412+

bufferBytes,

413+

);

374414

}

375415376416

export function resolveGoogleMeetConfig(input: unknown): GoogleMeetConfig {

@@ -392,6 +432,10 @@ export function resolveGoogleMeetConfigWithEnv(

392432

const audioFormat =

393433

resolveChromeAudioFormat(chrome.audioFormat) ??

394434

(hasCustomAudioCommand ? "g711-ulaw-8khz" : DEFAULT_GOOGLE_MEET_CONFIG.chrome.audioFormat);

435+

const audioBufferBytes = resolveAudioBufferBytes(

436+

chrome.audioBufferBytes,

437+

DEFAULT_GOOGLE_MEET_CONFIG.chrome.audioBufferBytes,

438+

);

395439

const chromeNode = asRecord(raw.chromeNode);

396440

const twilio = asRecord(raw.twilio);

397441

const voiceCall = asRecord(raw.voiceCall);

@@ -421,6 +465,7 @@ export function resolveGoogleMeetConfigWithEnv(

421465

chrome: {

422466

audioBackend: "blackhole-2ch",

423467

audioFormat,

468+

audioBufferBytes,

424469

launch: resolveBoolean(chrome.launch, DEFAULT_GOOGLE_MEET_CONFIG.chrome.launch),

425470

browserProfile: normalizeOptionalString(chrome.browserProfile),

426471

guestName:

@@ -438,10 +483,10 @@ export function resolveGoogleMeetConfigWithEnv(

438483

chrome.waitForInCallMs,

439484

DEFAULT_GOOGLE_MEET_CONFIG.chrome.waitForInCallMs,

440485

),

441-

audioInputCommand: configuredAudioInputCommand ?? [...defaultAudioInputCommand(audioFormat)],

442-

audioOutputCommand: configuredAudioOutputCommand ?? [

443-

...defaultAudioOutputCommand(audioFormat),

444-

],

486+

audioInputCommand:

487+

configuredAudioInputCommand ?? defaultAudioInputCommand(audioFormat, audioBufferBytes),

488+

audioOutputCommand:

489+

configuredAudioOutputCommand ?? defaultAudioOutputCommand(audioFormat, audioBufferBytes),

445490

bargeInInputCommand: resolveStringArray(chrome.bargeInInputCommand),

446491

bargeInRmsThreshold: resolveNumber(

447492

chrome.bargeInRmsThreshold,