AI音频转录与Google文档报告生成器
中级
这是一个AI领域的自动化工作流,包含 9 个节点。主要使用 Webhook, GoogleDocs, GmailTrigger, VlmRun 等节点,结合人工智能技术实现智能自动化。 AI音频转录与Google文档报告生成器
前置要求
- •HTTP Webhook 端点(n8n 会自动生成)
- •Google 账号和 Gmail API 凭证
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"meta": {
"instanceId": "0a7ae129a7d703150135f6cc24d0469f20ffd22b5ed59c23ee3e0608264e6d98",
"templateId": "3905",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "2175eca1-4842-4601-b0ac-84264cdc48ca",
"name": "🎙️ 工作流概览",
"type": "n8n-nodes-base.stickyNote",
"position": [
-260,
720
],
"parameters": {
"color": 7,
"width": 460,
"height": 720,
"content": "## 🎙️ 使用 VLM Run 进行 AI 音频转录"
},
"typeVersion": 1
},
{
"id": "3d1b367c-226c-4d9c-bc9e-0643ff3896bc",
"name": "📧 邮件监控",
"type": "n8n-nodes-base.stickyNote",
"position": [
220,
720
],
"parameters": {
"color": 7,
"width": 360,
"height": 720,
"content": "## 📧 Gmail 音频检测"
},
"typeVersion": 1
},
{
"id": "4c2744d9-c35d-4629-ac54-b3f299cf16e3",
"name": "🤖 AI 转录",
"type": "n8n-nodes-base.stickyNote",
"position": [
600,
720
],
"parameters": {
"color": 2,
"width": 360,
"height": 720,
"content": "## 🤖 音频 AI 处理"
},
"typeVersion": 1
},
{
"id": "52c19808-27ae-4ccd-af4d-a977bd44f18a",
"name": "🔗 异步处理",
"type": "n8n-nodes-base.stickyNote",
"position": [
980,
720
],
"parameters": {
"color": 5,
"width": 320,
"height": 720,
"content": "## 🔗 Webhook 处理流程"
},
"typeVersion": 1
},
{
"id": "7046634c-3534-4f62-9df9-7ece42a4b969",
"name": "📄 文档生成",
"type": "n8n-nodes-base.stickyNote",
"position": [
1320,
720
],
"parameters": {
"color": 7,
"width": 320,
"height": 720,
"content": "## 📄 专业报告"
},
"typeVersion": 1
},
{
"id": "31d1f0c3-73e7-4e1a-bc08-72c5694e7153",
"name": "监控邮件附件",
"type": "n8n-nodes-base.gmailTrigger",
"notes": "Continuously monitors Gmail for new emails with audio attachments. Automatically downloads all attachments and triggers the transcription workflow.",
"position": [
320,
1260
],
"parameters": {
"simple": false,
"filters": {},
"options": {
"downloadAttachments": true
},
"pollTimes": {
"item": [
{
"mode": "everyMinute"
}
]
}
},
"credentials": {
"gmailOAuth2": {
"id": "7MVziRpoyD8arghO",
"name": "Gmail account 2"
}
},
"typeVersion": 1.2
},
{
"id": "d2c14402-db05-4bf4-a8a5-402587d69ee8",
"name": "VLM Run 音频转录器",
"type": "@vlm-run/n8n-nodes-vlmrun.vlmRun",
"notes": "Processes audio files using VLM AI to generate accurate transcriptions with timestamps. Runs asynchronously for large audio files.",
"position": [
720,
1260
],
"parameters": {
"file": "attachment_0",
"domain": "audio.transcription",
"operation": "audio",
"callbackUrl": "https://playground.vlm.run/webhook/audio-transcription",
"processAsynchronously": true
},
"credentials": {
"vlmRunApi": {
"id": "cF5KpbVmnt36bdWr",
"name": "VLM Run account 6"
}
},
"typeVersion": 1
},
{
"id": "98e98532-dc44-4b15-a75d-24b3d7823c84",
"name": "接收转录结果",
"type": "n8n-nodes-base.webhook",
"notes": "Receives the completed transcription from VLM AI when asynchronous processing is finished. Contains full transcript with timestamps.",
"position": [
1080,
1260
],
"webhookId": "d599acd8-1891-4d07-b2f9-092cb6381b41",
"parameters": {
"path": "audio-transcription",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 2
},
{
"id": "c9468f04-42da-4725-a462-97cdcf6c40ac",
"name": "生成转录报告",
"type": "n8n-nodes-base.googleDocs",
"notes": "Creates a professionally formatted Google Doc with the transcription results, including timestamps and metadata.",
"position": [
1420,
1260
],
"parameters": {
"simple": false,
"actionsUi": {
"actionFields": [
{
"text": "=📄 Audio Transcription Report\n\n🗓️ Date: {{ new Date($json.body.completed_at).toLocaleString('en-US', { dateStyle: 'medium', timeStyle: 'short' }) }} \n⏱️ Total Duration: {{ $json.body.response.metadata.duration }} seconds \n{{ \n$json.body.response.segments.map((segment, index) => \n `\\n` +\n `🔹 Segment ${index + 1}\\n` +\n `⏰ Time: ${segment.start_time.toFixed(2)}s → ${segment.end_time.toFixed(2)}s\\n` +\n `📝 Transcript: \"${segment.content.trim()}\"\\n`\n).join('\\n')\n}}\n",
"action": "insert"
}
]
},
"operation": "update",
"documentURL": "https://docs.google.com/document/d/1QFHvOgEYKMLVpIRv6Mc7lXfDXhtoozgEK7O-wuNLzl0/edit?tab=t.0",
"authentication": "oAuth2"
},
"credentials": {
"googleDocsOAuth2Api": {
"id": "3x0WI9iZ6ToA2fXw",
"name": "Google Docs account"
}
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Monitor Email Attachments": {
"main": [
[
{
"node": "VLM Run Audio Transcriber",
"type": "main",
"index": 0
}
]
]
},
"Receive Transcription Results": {
"main": [
[
{
"node": "Generate Transcription Report",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
中级 - 人工智能
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
AI简历处理与GitHub分析(VLM运行)
AI简历处理与GitHub分析(VLM运行)
If
Code
Gmail
+7
18 节点Shahrear
人工智能
使用VLM Run AI和Gmail提醒从Google Drive图片提取考勤数据到Sheets
使用VLM Run AI和Gmail提醒从Google Drive图片提取考勤数据到Sheets
Gmail
Webhook
Google Drive
+4
11 节点Shahrear
Google Drive文档内嵌图片提取
使用VLM Run Agent从Google Drive文档中提取内嵌图片
Webhook
Split Out
Google Drive
+4
11 节点Shahrear
提取法律合同数据并使用VLM Run、Google Workspace和Slack发送提醒
提取法律合同数据并使用VLM Run、Google Workspace和Slack发送提醒
Set
Code
Slack
+7
14 节点Shahrear
技术雷达
使用SQL数据库、RAG和路由代理构建AI驱动的技术雷达顾问
If
Code
Cron
+22
53 节点Sean Lon
工程
AI邮件自动回复系统 - 邮箱RAG智能代理
AI邮件自动回复系统 - 邮箱RAG智能代理
If
Set
Gmail
+18
34 节点LukaszB
客户支持
工作流信息
难度等级
中级
节点数量9
分类1
节点类型5
作者
Shahrear
@shahrearI’m Shahrear, a Software Engineer with over 5 years of experience in full-stack development and workflow automation. I specialize in building intelligent, scalable automations using n8n, helping teams streamline operations and boost productivity. I’m also an expert in developing custom n8n nodes, with published work on npm - including the @vlm-run/n8n-nodes-vlmrun package. https://github.com/vlm-run/n8n-nodes-vlmrun
外部链接
在 n8n.io 查看 →
分享此工作流