01 · tl;dr
如果您…使用 MeetingBaaS
如果您…使用 meetbot
02 · 规格表
数字按页脚日期对照引用源核验。如有变动,请通过 PR 修正。
| meetbot | MeetingBaaS | ||
|---|---|---|---|
| pricing model | flat $0.30 / hr | subscription ($0–$299/mo) + tokens ($0.35–$0.50)[1] | |
| effective $/hr (Pro tier) | $0.30 | ~$0.50 (1 token/hr × $0.50)[2] | |
| effective $/hr (Scale tier) | $0.30 | ~$0.44 (1 token/hr × $0.44)[3] | |
| subscription floor | — | $0–$299 / mo[4] | |
| daily bot caps | none | 75 / 300 / 1k / 3k by tier[5] | |
| free tier | first hour, no card | 75 bots/day on PAYG (free)[6] | |
| transcription | BYOK today (free pass-through on per-speaker audio); hosted Whisper-large-v3 ships Q3 2026 | BYOK + Gladia bundle (0.25 token/hr)[7] | |
| self-host | M5 (source available) | supported (source available)[8] | |
| SDK license ELv2 blocks competing hosted services. MIT does not. | MIT | Elastic License 2.0 | |
| platforms | Meet, Teams, Zoom | Meet, Teams, Zoom | |
| data residency | Hetzner Falkenstein (DE) | EU (France) | |
| transports | webhook · websocket · RTMP | webhook · websocket | |
| pricing exposed | this page | public, with calculator[9] |
03 · 定价场景
三个用量点:爱好者、初创公司和大规模公司。每个单元格的公式可见 — 复制到电子表格,代入您自己的数字。
每月 10 小时的会议录制。
MeetingBaaS PAYG technically allows 75 bots/day for free, but tokens are still per-call. Realistically both providers absorb this in free tier.
每月 1,000 小时的会议录制。
Or Scale tier: $199/mo + 1,000 × $0.45 = $649 (worse here because the cap doesn't help). meetbot remains $300 either way.
每月 50,000 小时的会议录制。
Honest note: at sustained ~30k-50k hr/mo you'd negotiate a custom MeetingBaaS deal that may beat $0.35/token. We don't yet do volume tiering — at that scale, talk to both.
04 · 他们获胜之处
我们包含此部分,因为另一种做法 — 假装我们处处获胜 — 是不诚实的,而不诚实的比较页正是大多数比较页不值得阅读的原因。
05 · 我们获胜之处
每行链接到证明它的 docs 页。是数字,不是形容词。截至下方日期对照 MeetingBaaS 的公开页面。
06 · 迁移
相同形状,相同字段,不同主机。把您 MeetingBaaS 的 bot 派发调用换成 meetbot 调用。Webhook payload 以您的 handler 已经解析的相同 JSON 形状抵达。
// MeetingBaaS
const res = await fetch("https://api.meetingbaas.com/bots", {
method: "POST",
headers: {
"x-meeting-baas-api-key": process.env.MBAAS_KEY!,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
reserved: false,
speech_to_text: { provider: "Gladia" },
deduplication_key: "user-42-meeting-99",
}),
});// 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 lands in your bucket; pipe it into your provider
delivery: [{ transport: "webhook", url: WEBHOOK_URL }],
idempotency_key: "user-42-meeting-99",
}),
});07 · faq
最后核验 2026-05-09 对照 MeetingBaaS的公开页面。 发现错误? 在 GitHub 上修复.