모든 비교 · vs Attendee
Attendee is the closest in spirit to meetbot — a developer-first, source-available, Docker-friendly meeting-bot stack with a clean dev experience. The two substantive differences: license (they're Elastic 2.0 across the stack, our SDK + samples are MIT — bot binary closed) and platform coverage today (they ship Meet + Zoom; we ship eight API surfaces: Meet, Teams, Zoom Web, Zoom SDK, Webex, Whereby, Jitsi, and Discord). Their hosted free tier is genuinely good for prototyping; their paid tier pricing isn't publicly listed yet.
01 · 요약
Attendee을(를) 사용해야 할 때…
meetbot을 사용해야 할 때…
02 · 사양 표
페이지 푸터의 날짜에 인용된 출처에 대해 확인된 숫자. 무언가 변경되면 PR로 수정해 주세요.
| meetbot | Attendee | ||
|---|---|---|---|
| platforms today | Meet, Teams, Zoom Web, Zoom SDK, Webex, Whereby, Jitsi, Discord | 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 entry rate, published volume tiers | 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); URL-based guest bots ship across all 8 surfaces | yes (Zoom, Meet) |
03 · 가격 시나리오
세 가지 사용 지점: 취미가, 스타트업, 규모 있는 회사. 셀별 공식 가시화 — 스프레드시트에 복사하고 자신의 숫자를 넣으세요.
월 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
webhook_url: WEBHOOK_URL,
}),
});07 · FAQ
마지막 확인 2026-05-09 대상 Attendee의 공개 정보. 오류를 발견하셨나요? GitHub에서 수정.