01 · tl;dr
如果您…使用 Otter.ai
如果您…使用 meetbot
02 · 规格表
数字按页脚日期对照引用源核验。如有变动,请通过 PR 修正。
| meetbot | Otter.ai | ||
|---|---|---|---|
| what is it | developer API (HTTP + SDKs) | SaaS app (web + mobile + Chrome ext) | |
| primary buyer | engineering team building a product | individual or team end-user | |
| pricing shape | $0.30 / hr of meeting time | $16.99–$30 / user / month[1] | |
| per-hour at 40 hr/mo Business | $0.30 | ~$0.50 ($30 ÷ 60 hr cap × 40 hr / 40 hr)[2] | |
| free tier | first hour free | 300 minutes / month[3] | |
| raw outputs (audio · video · captions · chat) | yes — to your S3 bucket | no — locked in app | |
| brand the bot | yes (configurable bot_name) | no — bot is OtterPilot | |
| platforms | Meet, Teams, Zoom | Meet, Teams, Zoom, Webex | |
| consumer apps | — | iOS, Android, macOS, Windows, Chrome ext | |
| transcription quality | BYOK (Whisper, Deepgram, AssemblyAI on your own key); hosted Whisper-large-v3 ships Q3 2026 | Otter ASR (well-tuned) | |
| summarisation | BYO LLM via webhook payload | built-in (Otter AI Chat) |
03 · 定价场景
三个用量点:爱好者、初创公司和大规模公司。每个单元格的公式可见 — 复制到电子表格,代入您自己的数字。
每月 10 小时的会议录制。
Different products. If you're a person who attends 10 meetings, Otter is the right purchase — you get a UI. We give you four files in a bucket.
每月 1,000 小时的会议录制。
Apples to oranges: 30 Otter seats also gives you 30 humans using a polished app. 1,000 meetbot hours gives you raw signals ready to be ingested by your own product.
每月 50,000 小时的会议录制。
At this scale you almost certainly aren't using Otter — you're building your own product on top of an infra layer like meetbot. The number is included for completeness, not as a real choice.
04 · 他们获胜之处
我们包含此部分,因为另一种做法 — 假装我们处处获胜 — 是不诚实的,而不诚实的比较页正是大多数比较页不值得阅读的原因。
05 · 我们获胜之处
每行链接到证明它的 docs 页。是数字,不是形容词。截至下方日期对照 Otter.ai 的公开页面。
06 · 迁移
相同形状,相同字段,不同主机。把您 Otter.ai 的 bot 派发调用换成 meetbot 调用。Webhook payload 以您的 handler 已经解析的相同 JSON 形状抵达。
// Otter doesn't have a public bot-dispatch API.
// Their integration story is "your users sign in to Otter
// and it joins their meetings via OtterPilot."
// You can't programmatically dispatch a bot to a URL.
//
// If your product needs to drop a bot in a meeting on
// behalf of your customer — without your customer signing
// in to a third-party app — you need an infra API.// meetbot — drop a bot in any meeting, billed per minute
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: "YourProduct",
delivery: [{ transport: "webhook", url: WEBHOOK_URL }],
}),
});07 · faq
最后核验 2026-05-09 对照 Otter.ai的公开页面。 发现错误? 在 GitHub 上修复.