すべての比較 · vs Attendee
Attendee は精神的に最も meetbot に近い競合です — developer-first、source-available、Docker フレンドリーな meeting-bot スタックで、開発体験がクリーン。実質的な違いは 2 つ:ライセンス (彼らは Elastic 2.0、我々は MIT) と今日のプラットフォームカバレッジ (彼らは Meet + Zoom、我々は Meet + Teams + Zoom)。彼らのホスト型無料枠は実際にプロトタイピング向けに良いものです。彼らの有料枠の価格はまだ公開されていません。
01 · tl;dr
Attendee を使うべきとき…
meetbot を使うべきとき…
02 · スペック表
ページフッターの日付に引用元に対して検証された数字。何か変わっていれば PR で訂正してください。
| meetbot | Attendee | ||
|---|---|---|---|
| platforms today | Meet, Teams, Zoom | Meet, Zoom (Teams + Webex on roadmap)[1] | |
| SDK license ELv2 prohibits offering a competing hosted service. | MIT | Elastic License 2.0[2] | |
| self-host story | M5 (source-available) | Docker compose today[3] | |
| hosted pricing | $0.30 / hr (flat, published) | free tier; paid not listed[4] | |
| transcription | BYOK today (free pass-through on per-speaker audio); hosted Whisper-large-v3 ships Q3 2026 | BYOK (Deepgram, etc.) | |
| transports | webhook · websocket · RTMP | webhook · websocket | |
| data residency | Hetzner Falkenstein (DE) | self-host: anywhere; hosted: not specified | |
| pricing exposed | this page | after a sales conversation (paid) | |
| production maturity | pre-launch (zero paying customers today; sample apps + daily smoke tests against real meetings) | growing fast, similar early stage | |
| OAuth-managed signed-in bots | M3 (Zoom · Meet · Teams) | yes (Zoom, Meet) |
03 · 料金シナリオ
3つの利用ポイント: ホビイスト、スタートアップ、スケールした企業。セルごとに数式が見えます — スプレッドシートにコピーして、自分の数字を入れてください。
月あたり 10 時間の会議録画。
Attendee's hosted free tier covers this if your bot count fits. We can't predict their paid tier. If $3/mo is your gating cost, hosted Attendee wins; otherwise indistinguishable.
月あたり 1,000 時間の会議録画。
We can't quote because Attendee's paid tier isn't public. If you need predictable pricing for your finance model, that's a real edge for us at this scale.
月あたり 50,000 時間の会議録画。
At this scale you'd self-host Attendee on your own infra (~$300–800/mo Hetzner + ~0.3 FTE ops) which probably beats both hosted options. Worth a real proof-of-concept.
04 · 相手が勝つところ
このセクションを含めるのは、その代替 — どこでも我々が勝つふり — が不誠実だからで、不誠実な比較ページがほとんど読む価値がない理由です。
05 · 我々が勝つところ
各行はそれを証明する docs ページにリンクします。形容詞ではなく数字。下記日付時点の Attendee の公開情報に対して取得。
06 · 移行
同じ形、同じフィールド、別のホスト。 Attendee の bot ディスパッチ呼び出しを meetbot のものに置き換えてください。webhook ペイロードはハンドラーが既にパースしている同じ JSON 形で届きます。
// Attendee
const res = await fetch("https://app.attendee.dev/api/v1/bots", {
method: "POST",
headers: {
Authorization: `Token ${process.env.ATTENDEE_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
meeting_url: "https://meet.google.com/abc-defg-hij",
bot_name: "notes",
transcription_settings: { provider: "deepgram" },
webhook_url: WEBHOOK_URL,
}),
});// 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 対象: Attendeeの公開情報。 誤りを見つけましたか? GitHub で修正.