すべての比較 · vs Otter.ai
このページは、Otter があらゆる「meeting recording」検索に登場するために存在します。我々は同じプロダクトではありません:Otter はエンドユーザー向け SaaSであり、meetbot は Otter のようなプロダクトが構築されるであろう開発者向け API です。以下では、フレーミング、価格の形 (席単位 vs 時間単位)、そしてどちらを選ぶべきかを説明します。自分用のミーティングノートアプリを探してここに来た場合、正直な答えは:Otter をインストールしてください。ミーティングを録画する機能を出荷する開発者なら、続きを読んでください。
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 · 料金シナリオ
3つの利用ポイント: ホビイスト、スタートアップ、スケールした企業。セルごとに数式が見えます — スプレッドシートにコピーして、自分の数字を入れてください。
月あたり 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 ペイロードはハンドラーが既にパースしている同じ 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 で修正.