01 · tl;dr
如果您…使用 Vexa
如果您…使用 meetbot
02 · 规格表
数字按页脚日期对照引用源核验。如有变动,请通过 PR 修正。
| meetbot | Vexa | ||
|---|---|---|---|
| OSS license (full stack) | MIT (SDKs/CLI/samples/spec); bot closed | Apache 2.0 (everything)[1] | |
| self-host | M5 (source-available) | today (Docker · K8s · OpenShift · bare metal)[2] | |
| hosted bot price | $0.30 / hr (bot-hour only) | $0.30 / hr[3] | |
| hosted transcription | BYOK today (free pass-through); hosted Whisper +$0.10/hr at GA (Q3 2026) | +$0.20 / hr[4] | |
| bundled hosted $/hr | $0.30 + your transcription bill (BYOK) today; $0.40 at GA | $0.50 | |
| individual plan | — | $12 / mo (1 concurrent bot)[5] | |
| MCP server | — | yes (built-in)[6] | |
| interactive bot (TTS speak) | M1 (output-audio endpoint) | yes (TTS-driven) | |
| platforms | Meet, Teams, Zoom | Meet, Teams, Zoom | |
| transports | webhook · websocket · RTMP | webhook · websocket | |
| data residency (hosted) | Hetzner Falkenstein (DE) | self-host: anywhere; hosted: not specified | |
| production maturity | pre-launch (zero paying customers today; sample apps + daily smoke tests against real meetings) | growing fast, smaller install base than Recall |
03 · 定价场景
三个用量点:爱好者、初创公司和大规模公司。每个单元格的公式可见 — 复制到电子表格,代入您自己的数字。
每月 10 小时的会议录制。
Today: meetbot bills the bot-hour only — transcription (if you want it) is BYOK. Or self-host Vexa free on your own box — fixed cost ~$0 + your time. If your time is free, Vexa wins. It rarely is.
每月 1,000 小时的会议录制。
Today bundled: $300 + ~$100–200 for BYOK transcription via Deepgram/AssemblyAI ≈ $400–500/mo. At GA (hosted Whisper Q3 2026): $400/mo. Self-host Vexa = ~$80/mo Hetzner box + ~10 hr/mo ops time ≈ $280/mo at $20/hr engineer rate.
每月 50,000 小时的会议录制。
At this scale BYOK transcription approaches its hardware floor (~$200–400/mo for self-hosted Whisper on a couple of Hetzner GPU boxes). Self-host Vexa at this scale = real ops investment (~1 FTE), plus GPU bills for transcription. Probably cheaper in hardware ($/hr) but expensive in headcount.
04 · 他们获胜之处
我们包含此部分,因为另一种做法 — 假装我们处处获胜 — 是不诚实的,而不诚实的比较页正是大多数比较页不值得阅读的原因。
05 · 我们获胜之处
每行链接到证明它的 docs 页。是数字,不是形容词。截至下方日期对照 Vexa 的公开页面。
06 · 迁移
相同形状,相同字段,不同主机。把您 Vexa 的 bot 派发调用换成 meetbot 调用。Webhook payload 以您的 handler 已经解析的相同 JSON 形状抵达。
// Vexa (hosted)
const res = await fetch("https://gateway.vexa.ai/bots", {
method: "POST",
headers: {
"X-API-Key": process.env.VEXA_KEY!,
"Content-Type": "application/json",
},
body: JSON.stringify({
platform: "google_meet",
native_meeting_id: "abc-defg-hij",
bot_name: "notes",
language: "en",
}),
});// meetbot — transcription is BYOK today (hosted Whisper Q3 2026)
const res = await fetch("https://api.meetbot.dev/api/v1/bot", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.MEETBOT_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
// per-speaker audio in your bucket; pipe to your provider
delivery: [{ transport: "webhook", url: WEBHOOK_URL }],
}),
});07 · faq
最后核验 2026-05-09 对照 Vexa的公开页面。 发现错误? 在 GitHub 上修复.