docs(plugins): clarify google meet quick start · openclaw/openclaw@272bd59
steipete
·
2026-04-24
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -23,6 +23,57 @@ The plugin is explicit by design:
|
23 | 23 | - The CLI command is `googlemeet`; `meet` is reserved for broader agent |
24 | 24 | teleconference workflows. |
25 | 25 | |
| 26 | +## Quick start |
| 27 | + |
| 28 | +Install the local audio dependencies and make sure the realtime provider can use |
| 29 | +OpenAI: |
| 30 | + |
| 31 | +```bash |
| 32 | +brew install blackhole-2ch sox |
| 33 | +export OPENAI_API_KEY=sk-... |
| 34 | +``` |
| 35 | + |
| 36 | +Enable the plugin: |
| 37 | + |
| 38 | +```json5 |
| 39 | +{ |
| 40 | + plugins: { |
| 41 | + entries: { |
| 42 | +"google-meet": { |
| 43 | + enabled: true, |
| 44 | + config: {}, |
| 45 | + }, |
| 46 | + }, |
| 47 | + }, |
| 48 | +} |
| 49 | +``` |
| 50 | + |
| 51 | +Check setup: |
| 52 | + |
| 53 | +```bash |
| 54 | +openclaw googlemeet setup |
| 55 | +``` |
| 56 | + |
| 57 | +Join a meeting: |
| 58 | + |
| 59 | +```bash |
| 60 | +openclaw googlemeet join https://meet.google.com/abc-defg-hij |
| 61 | +``` |
| 62 | + |
| 63 | +Or let an agent join through the `google_meet` tool: |
| 64 | + |
| 65 | +```json |
| 66 | +{ |
| 67 | +"action": "join", |
| 68 | +"url": "https://meet.google.com/abc-defg-hij" |
| 69 | +} |
| 70 | +``` |
| 71 | + |
| 72 | +Chrome joins as the signed-in Chrome profile. In Meet, pick `BlackHole 2ch` for |
| 73 | +the microphone/speaker path used by OpenClaw. For clean duplex audio, use |
| 74 | +separate virtual devices or a Loopback-style graph; a single BlackHole device is |
| 75 | +enough for a first smoke test but can echo. |
| 76 | + |
26 | 77 | ## Transports |
27 | 78 | |
28 | 79 | ### Chrome |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。