如何使用 Deepgram Nova-3 录制和转写会议

LLazare Rossillon

将 Zoom、Google Meet 和 Microsoft Teams 会议接入 Deepgram:bot 录制通话,Nova-3 使用你的模型和关键词进行转写,并通过 webhook 向你返回 Deepgram 原生 JSON 格式的结果。

如何使用 Deepgram Nova-3 录制和转写会议
August 13, 2026

Deeepgram 的 Nova-3 是目前速度最快、准确率最高的语音转文字模型之一——但 Deepgram 本身无法加入 Zoom 会议。如果你的 pipeline 已经基于 Deepgram 构建(自定义关键词、智能格式化、你协商好的费率),那么缺失的环节就是会议捕获。

本指南将一个会议 bot 与你的 Deepgram 账户对接:bot 录制会议,Deepgram 进行转写,你的 webhook 接收 Deepgram 原生格式的输出。

只需一个 request:bot 加入 Zoom、Google Meet 或 Microsoft Teams,transcription_config 将音频路由到你的 API key 对应的 Deepgram 账户。

第一步:获取你的密钥

  • Deepgram:在 Deepgram Console 中创建 API key(即你通常放在 DEEPGRAM_API_KEY 中的那个 key)。
  • Meeting BaaS:在 auth.meetingbaas.com 自助注册——前 8 小时录制免费。

第二步:发送已配置 Deepgram 的 bot

curl -X POST "https://api.meetingbaas.com/v2/bots" \
     -H "Content-Type: application/json" \
     -H "x-meeting-baas-api-key: $API_KEY" \
     -d '{
           "meeting_url": "https://meet.google.com/abc-defg-hij",
           "bot_name": "Deepgram Bot",
           "transcription_config": {
             "provider": "deepgram",
             "api_key": "'"$DEEPGRAM_API_KEY"'",
             "custom_params": {
               "model": "nova-3",
               "smart_format": true,
               "diarize": true
             }
           }
         }'

custom_params 将选项直接传递给 Deepgram,因此你已在使用的参数——modelsmart_formatdiarize、关键词提示——均可正常使用。如果不设置 model,Deepgram 默认使用 base,因此请明确指定 nova-3

第三步:接收 Deepgram 原生格式的输出

会议结束后,你的 webhook 将收到与 Deepgram response 结构一致的转写结果——包含 transcript、逐字时间戳、confidence 置信度分数、智能格式化的 punctuated_word 值——以及 Meeting BaaS 标准格式的录像、参与者列表和说话人时间轴。你已有的 Deepgram 解析器可以继续使用。

为何选择这种组合

  • 智能格式化:货币、电话号码和电子邮件由 Deepgram 的 smart_format 格式化——非常适用于销售通话内容提取。
  • 关键词:在你的 Deepgram 账户中配置的产品名称和专业术语识别,适用于每一次会议。
  • 你的账单:Deepgram 的用量在你自己的账户和费率下计算;Meeting BaaS 对自带 API key 的转写收取每录制小时 0.05 个 token(Pro 及以上套餐),另加每小时 1 个 token 的标准录制费率。

何时改用内置选项

如果你没有 Deepgram 账户,内置的 Gladia 默认选项(每小时 0.25 个 token,支持 100 多种语言,含说话人分离)无需任何提供商配置即可使用。你可以为每个 bot 单独切换提供商,因此在同一产品中同时使用两者完全没有问题。

后续步骤

相关博客tutorial