01 · tl;dr
如果您…使用 Recall.ai
如果您…使用 meetbot
02 · 规格表
数字按页脚日期对照引用源核验。如有变动,请通过 PR 修正。
| meetbot | Recall.ai | ||
|---|---|---|---|
| recording price | $0.30 / hr (flat bot-hour) | $0.50 / hr[1] | |
| transcription price We do not ship transcription today. Per-speaker audio + the meeting platform's native captions are emitted; transcription is BYOK on those tracks until our hosted Whisper ships Q3. | BYOK today (free pass-through); hosted Whisper +$0.10/hr at GA (Q3 2026) | +$0.15 / hr[2] | |
| storage price | $0 (we don't host recordings; they upload directly to your S3) | +$0.05 / hr / 30 d[3] | |
| bundled $/hr (today) Apples-to-apples: 1 hr recorded + transcribed + stored 30 days. Today the BYOK path on per-speaker audio is free of meetbot fees but you pay your provider directly. At GA (hosted Whisper, Q3 2026) the bundled rate becomes $0.40/hr us vs $0.65/hr them. | $0.30 bot-hour + your own transcription bill (BYOK) | $0.65 | |
| billing granularity | per minute | per minute (rounded) | |
| free tier | first hour, no card | 5 hr / mo[4] | |
| SDK license Recall's hosted API is closed-source. Their public sample repos on github.com/recallai ship without a LICENSE file (effectively all-rights-reserved by default copyright). Ours are MIT. | MIT SDK + samples; proprietary hosted backend | proprietary API + unlicensed sample repos | |
| self-hostable | planned (M5, source available); not committed | no | |
| platforms | Meet, Teams, Zoom (Webex + Discord M2) | Meet, Teams, Zoom, Webex, Slack Huddles, GoTo | |
| data residency | eu-central (Falkenstein) only | US, EU, JP[5] | |
| compliance certifications | none today (SOC 2 Type 1 on M5 roadmap; no BAA template; no published uptime SLA) | SOC 2, ISO 27001, HIPAA BAA[6] | |
| SLA | no published SLA (will publish once status.meetbot.dev has real history) | 99.9% SLA on enterprise tier | |
| transports | webhook, websocket, RTMP | webhook, websocket, RTMP | |
| mobile SDK Recall has a mobile SDK in market. We do not. Our embedded SDK lands Q3 2026 — ambient mic capture only (Apple/Google block VoIP audio capture from other apps). | shipping Q3 2026 (iOS first) | shipping today[7] | |
| customers (public) | pre-launch (zero paying customers today) | 3,000+ |
03 · 定价场景
三个用量点:爱好者、初创公司和大规模公司。每个单元格的公式可见 — 复制到电子表格,代入您自己的数字。
每月 10 小时的会议录制。
Today: meetbot only bills the bot-hour; transcription (if you want it) is BYOK — pipe per-speaker audio into Whisper/Deepgram/AssemblyAI on your own key. Both providers' free tiers absorb most of this. Recall's 5-hr free tier means real cost ~$3.25; meetbot's first-hour-free means ~$2.70 plus whatever your provider charges for ~10 hrs of audio.
每月 1,000 小时的会议录制。
$350/mo of saved bot-hour spend at this scale — minus whatever your transcription provider charges. Whisper-large-v3 self-hosted on a Hetzner GPU box (~$200/mo for an RTX 4090) handles ~20 concurrent realtime streams; Deepgram pay-go is around $0.0043/min ≈ $0.26/hr. Real bundled cost on meetbot today: roughly $300 + $200–260 = $500–560/mo. At GA (hosted Whisper Q3 2026): $400/mo flat.
每月 50,000 小时的会议录制。
At this scale you self-host Whisper-large-v3 on dedicated GPU infra (a couple of $200–400/mo Hetzner GPU boxes serve thousands of concurrent streams) and the transcription leg approaches its hardware floor. Recall negotiates volume discounts at this scale. We don't yet, but our list price on the bot-hour is already below their post-negotiation floor we've seen quoted.
04 · 他们获胜之处
我们包含此部分,因为另一种做法 — 假装我们处处获胜 — 是不诚实的,而不诚实的比较页正是大多数比较页不值得阅读的原因。
05 · 我们获胜之处
每行链接到证明它的 docs 页。是数字,不是形容词。截至下方日期对照 Recall.ai 的公开页面。
06 · 迁移
相同形状,相同字段,不同主机。把您 Recall.ai 的 bot 派发调用换成 meetbot 调用。Webhook payload 以您的 handler 已经解析的相同 JSON 形状抵达。
// Recall.ai
const res = await fetch("https://us-west-2.recall.ai/api/v1/bot", {
method: "POST",
headers: {
Authorization: `Token ${process.env.RECALL_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
transcription_options: { provider: "deepgram" },
real_time_transcription: { destination_url: WEBHOOK_URL },
}),
});// meetbot — same shape, different host.
// Note: we don't ship transcription today — per-speaker audio
// lands in your bucket; pipe it into your provider of choice.
// Hosted Whisper option lands 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",
// captions: passthrough of platform-native captions (Meet/Teams/Zoom)
delivery: [{ transport: "webhook", url: WEBHOOK_URL }],
}),
});07 · faq
最后核验 2026-05-09 对照 Recall.ai的公开页面。 发现错误? 在 GitHub 上修复.