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

推荐订阅源

博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
Microsoft Azure Blog
Microsoft Azure Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
D
DataBreaches.Net
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements

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
refactor: reuse realtime output activity in google meet (...
steipete · 2026-05-26 · via Recent Commits to openclaw:main

@@ -13,6 +13,7 @@ import {

1313

import {

1414

createRealtimeVoiceAgentTalkbackQueue,

1515

createRealtimeVoiceBridgeSession,

16+

createRealtimeVoiceOutputActivityTracker,

1617

createTalkSessionController,

1718

convertPcmToMulaw8k,

1819

extendRealtimeVoiceOutputEchoSuppression,

@@ -30,6 +31,7 @@ import {

3031

type RealtimeVoiceAgentTalkbackQueue,

3132

type RealtimeVoiceBridgeEventLogEntry,

3233

type RealtimeVoiceBridgeSession,

34+

type RealtimeVoiceOutputActivityTracker,

3335

type RealtimeVoiceProviderConfig,

3436

type RealtimeVoiceProviderPlugin,

3537

type RealtimeVoiceTranscriptEntry,

@@ -163,6 +165,24 @@ export function extendGoogleMeetOutputEchoSuppression(params: {

163165

});

164166

}

165167168+

export function recordGoogleMeetOutputActivity(params: {

169+

tracker: RealtimeVoiceOutputActivityTracker;

170+

audio: Buffer;

171+

audioFormat: GoogleMeetConfig["chrome"]["audioFormat"];

172+

nowMs: number;

173+

lastOutputPlayableUntilMs: number;

174+

suppressInputUntilMs: number;

175+

}): { lastOutputPlayableUntilMs: number; suppressInputUntilMs: number; durationMs: number } {

176+

const suppression = extendGoogleMeetOutputEchoSuppression(params);

177+

params.tracker.markPlaybackStarted();

178+

params.tracker.markAudio({

179+

audioMs: suppression.durationMs,

180+

sourceAudioBytes: params.audio.byteLength,

181+

sinkAudioBytes: params.audio.byteLength,

182+

});

183+

return suppression;

184+

}

185+166186

export function resolveGoogleMeetRealtimeAudioFormat(config: GoogleMeetConfig) {

167187

return config.chrome.audioFormat === "g711-ulaw-8khz"

168188

? REALTIME_VOICE_AUDIO_FORMAT_G711_ULAW_8KHZ

@@ -477,7 +497,7 @@ export async function startCommandAgentAudioBridge(params: {

477497

let lastInputAt: string | undefined;

478498

let lastOutputAt: string | undefined;

479499

let lastInputBytes = 0;

480-

let lastOutputBytes = 0;

500+

const outputActivity = createRealtimeVoiceOutputActivityTracker();

481501

let suppressedInputBytes = 0;

482502

let lastSuppressedInputAt: string | undefined;

483503

let suppressInputUntil = 0;

@@ -606,7 +626,8 @@ export async function startCommandAgentAudioBridge(params: {

606626

});

607627608628

const writeOutputAudio = (audio: Buffer) => {

609-

const suppression = extendGoogleMeetOutputEchoSuppression({

629+

const suppression = recordGoogleMeetOutputActivity({

630+

tracker: outputActivity,

610631

audio,

611632

audioFormat: params.config.chrome.audioFormat,

612633

nowMs: Date.now(),

@@ -616,7 +637,6 @@ export async function startCommandAgentAudioBridge(params: {

616637

suppressInputUntil = suppression.suppressInputUntilMs;

617638

lastOutputPlayableUntilMs = suppression.lastOutputPlayableUntilMs;

618639

lastOutputAt = new Date().toISOString();

619-

lastOutputBytes += audio.byteLength;

620640

emitTalkEvent({

621641

type: "output.audio.delta",

622642

turnId: ensureTalkTurn(),

@@ -787,12 +807,12 @@ export async function startCommandAgentAudioBridge(params: {

787807

providerConnected: sttSession?.isConnected() ?? false,

788808

realtimeReady,

789809

audioInputActive: lastInputBytes > 0,

790-

audioOutputActive: lastOutputBytes > 0,

810+

audioOutputActive: outputActivity.isActive(),

791811

lastInputAt,

792812

lastOutputAt,

793813

lastSuppressedInputAt,

794814

lastInputBytes,

795-

lastOutputBytes,

815+

lastOutputBytes: outputActivity.snapshot().sinkAudioBytes,

796816

suppressedInputBytes,

797817

...getGoogleMeetRealtimeTranscriptHealth(transcript),

798818

recentTalkEvents: summarizeGoogleMeetTalkEvents(recentTalkEvents),

@@ -833,19 +853,19 @@ export async function startCommandRealtimeAudioBridge(params: {

833853

let lastInputAt: string | undefined;

834854

let lastOutputAt: string | undefined;

835855

let lastInputBytes = 0;

836-

let lastOutputBytes = 0;

856+

const outputActivity = createRealtimeVoiceOutputActivityTracker();

837857

let lastClearAt: string | undefined;

838858

let clearCount = 0;

839859

let suppressedInputBytes = 0;

840860

let lastSuppressedInputAt: string | undefined;

841861

let suppressInputUntil = 0;

842-

let lastOutputAtMs = 0;

843862

let lastOutputPlayableUntilMs = 0;

844863

let bargeInInputProcess: BridgeProcess | undefined;

845864

let agentTalkback: RealtimeVoiceAgentTalkbackQueue | undefined;

846865847866

const suppressInputForOutput = (audio: Buffer) => {

848-

const suppression = extendGoogleMeetOutputEchoSuppression({

867+

const suppression = recordGoogleMeetOutputActivity({

868+

tracker: outputActivity,

849869

audio,

850870

audioFormat: params.config.chrome.audioFormat,

851871

nowMs: Date.now(),

@@ -970,12 +990,13 @@ export async function startCommandRealtimeAudioBridge(params: {

970990

stdio: ["ignore", "pipe", "pipe"],

971991

});

972992

bargeInInputProcess.stdout?.on("data", (chunk) => {

973-

if (stopped || lastOutputAtMs === 0) {

993+

if (stopped || !outputActivity.isInterruptible()) {

974994

return;

975995

}

976996

const now = Date.now();

977997

const playbackActive = now <= Math.max(lastOutputPlayableUntilMs, suppressInputUntil);

978-

if (!playbackActive && now - lastOutputAtMs > 1000) {

998+

const lastOutputAudioAt = outputActivity.snapshot().lastAudioAt;

999+

if (!playbackActive && (lastOutputAudioAt === undefined || now - lastOutputAudioAt > 1_000)) {

9791000

return;

9801001

}

9811002

if (now - lastBargeInAt < params.config.chrome.bargeInCooldownMs) {

@@ -1141,9 +1162,7 @@ export async function startCommandRealtimeAudioBridge(params: {

11411162

turnId,

11421163

payload: { byteLength: audio.byteLength },

11431164

});

1144-

lastOutputAtMs = Date.now();

11451165

lastOutputAt = new Date().toISOString();

1146-

lastOutputBytes += audio.byteLength;

11471166

suppressInputForOutput(audio);

11481167

writeOutputAudio(audio);

11491168

},

@@ -1315,12 +1334,12 @@ export async function startCommandRealtimeAudioBridge(params: {

13151334

providerConnected: bridge?.bridge.isConnected() ?? false,

13161335

realtimeReady,

13171336

audioInputActive: lastInputBytes > 0,

1318-

audioOutputActive: lastOutputBytes > 0,

1337+

audioOutputActive: outputActivity.isActive(),

13191338

lastInputAt,

13201339

lastOutputAt,

13211340

lastSuppressedInputAt,

13221341

lastInputBytes,

1323-

lastOutputBytes,

1342+

lastOutputBytes: outputActivity.snapshot().sinkAudioBytes,

13241343

suppressedInputBytes,

13251344

...getGoogleMeetRealtimeTranscriptHealth(transcript),

13261345

...getGoogleMeetRealtimeEventHealth(realtimeEvents),