すべての比較 · vs MeetingBaaS
MeetingBaaS は我々と並べて検討されることが最も多い EU の競合です — 同じ Falkenstein リージョン、source-available のボット、寛大な無料枠。実質的な違いは料金体系です:彼らは月額サブスクリプションとボット単位のトークンを束ねているのに加え日次上限があります。我々はフラットな分単位料金で、プラン階層も上限もありません。利用形態が彼らのプラン階層に正確に一致する場合、非常に高い持続的なボリュームでは彼らが勝つ可能性があります — シナリオ 3 でその点を認めます。
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 · 料金シナリオ
3つの利用ポイント: ホビイスト、スタートアップ、スケールした企業。セルごとに数式が見えます — スプレッドシートにコピーして、自分の数字を入れてください。
月あたり 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 ペイロードはハンドラーが既にパースしている同じ 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 で修正.