Zoom の録画を Google ドライブに保存し、Airtable にメーティング記録を加える
中級
これはFile Management, Multimodal AI分野の自動化ワークフローで、7個のノードを含みます。主にCode, Webhook, Airtable, GoogleDrive, HttpRequestなどのノードを使用。 Zoom 録画を Google ドライブに自動保存し、Airtable でメッセージを記録
前提条件
- •HTTP Webhookエンドポイント(n8nが自動生成)
- •Airtable API Key
- •Google Drive API認証情報
- •ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc",
"templateCredsSetupCompleted": true
},
"nodes": [
{
"id": "f57bfeb3-65d7-45c3-85fa-45f4c0e94d9f",
"name": "レコードの作成または更新",
"type": "n8n-nodes-base.airtable",
"position": [
944,
400
],
"parameters": {
"base": {
"__rl": true,
"mode": "list",
"value": "appCV1g03wAMk91ZL",
"cachedResultUrl": "https://airtable.com/appCV1g03wAMk91ZL",
"cachedResultName": "contacts"
},
"table": {
"__rl": true,
"mode": "list",
"value": "tblvmGsSf7xTDtIwS",
"cachedResultUrl": "https://airtable.com/appCV1g03wAMk91ZL/tblvmGsSf7xTDtIwS",
"cachedResultName": "Zoom Meeting Log"
},
"columns": {
"value": {
"Host": "={{ $json.host }}",
"Topic": "={{ $json.topic }}",
"File Size": "={{ $json.file_type }}",
"File Type": "Other",
"Meeting ID": "={{ $json.meeting_id }}"
},
"schema": [
{
"id": "id",
"type": "string",
"display": true,
"removed": false,
"readOnly": true,
"required": false,
"displayName": "id",
"defaultMatch": true
},
{
"id": "Meeting ID",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Meeting ID",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Topic",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Topic",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Host",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Host",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "File Type",
"type": "options",
"display": true,
"options": [
{
"name": "MP4",
"value": "MP4"
},
{
"name": "M4A",
"value": "M4A"
},
{
"name": "Other",
"value": "Other"
}
],
"removed": false,
"readOnly": false,
"required": false,
"displayName": "File Type",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "File Size",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "File Size",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Google Drive Saved",
"type": "options",
"display": true,
"options": [
{
"name": "Yes",
"value": "Yes"
},
{
"name": "No",
"value": "No"
}
],
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Google Drive Saved",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Timestamp",
"type": "dateTime",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Timestamp",
"defaultMatch": false,
"canBeUsedToMatch": true
},
{
"id": "Related Contact",
"type": "string",
"display": true,
"removed": false,
"readOnly": false,
"required": false,
"displayName": "Related Contact",
"defaultMatch": false,
"canBeUsedToMatch": true
}
],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": false
},
"options": {},
"operation": "upsert"
},
"credentials": {
"airtableTokenApi": {
"id": "ungHc0pnbSXnUtl8",
"name": "full access"
}
},
"typeVersion": 2.1
},
{
"id": "a3d54194-cfb0-4497-8600-95399203959d",
"name": "結果のログ",
"type": "n8n-nodes-base.code",
"position": [
768,
400
],
"parameters": {
"jsCode": "// Collect metadata + Drive result\nconst driveFile = $input.first().json;\nconst prev = $('Normalize Recording Data').item.json;\n\nreturn {\n json: {\n ...prev,\n saved_to_drive: true,\n drive_file_id: driveFile.id,\n drive_link: driveFile.webViewLink\n }\n};"
},
"typeVersion": 2
},
{
"id": "03064eac-432f-452b-8170-6e661b7f39b0",
"name": "Google Driveにアップロード",
"type": "n8n-nodes-base.googleDrive",
"position": [
576,
400
],
"parameters": {
"driveId": {
"__rl": true,
"mode": "list",
"value": "My Drive"
},
"options": {},
"folderId": {
"__rl": true,
"mode": "list",
"value": "root",
"cachedResultName": "/ (Root folder)"
}
},
"typeVersion": 3
},
{
"id": "fede097e-50ae-452c-b317-819629e31d97",
"name": "録画をダウンロード",
"type": "n8n-nodes-base.httpRequest",
"position": [
368,
400
],
"parameters": {
"url": "={{ $json.file_url }}",
"options": {}
},
"typeVersion": 4.1
},
{
"id": "606783f7-091d-488b-bef8-12d25b88a42a",
"name": "録画データを正規化",
"type": "n8n-nodes-base.code",
"position": [
176,
400
],
"parameters": {
"jsCode": "// Normalize Zoom webhook payload\nconst event = $input.first().json;\nconst recording = event.payload.object.recording_files[0];\n\nreturn {\n json: {\n meeting_id: event.payload.object.id,\n topic: event.payload.object.topic,\n host: event.payload.object.host_email,\n file_url: recording.download_url,\n file_type: recording.file_type,\n file_size: recording.file_size,\n timestamp: new Date().toISOString()\n }\n};"
},
"typeVersion": 2
},
{
"id": "e33a40c8-508e-43af-9b4f-991b35ec2f4a",
"name": "Zoom Recording Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
-32,
400
],
"webhookId": "243c60a4-9f5a-4afc-afa4-33bf0cfab5de",
"parameters": {
"path": "zoom-recording",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 1
},
{
"id": "c82aaea6-6404-456b-991b-59674090864f",
"name": "セットアップ手順",
"type": "n8n-nodes-base.stickyNote",
"position": [
-32,
192
],
"parameters": {
"content": "🎥 **SETUP REQUIRED:**\n\n1. **Zoom Setup:**\n - Create Zoom App → enable recording.completed event\n - Add webhook URL from this workflow\n\n2. **Google Drive:**\n - Connect OAuth\n - Replace `YOUR_FOLDER_ID`\n\n3. **Airtable:**\n - Create base → Table: `Meeting Logs`\n - Columns: Meeting ID | Topic | Host | File Type | File Size | Google Drive Saved | Drive Link | Timestamp\n - Replace `YOUR_AIRTABLE_BASE_ID`\n\n⚡ Saves Zoom recordings to Drive + logs metadata in Airtable!"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"a3d54194-cfb0-4497-8600-95399203959d": {
"main": [
[
{
"node": "f57bfeb3-65d7-45c3-85fa-45f4c0e94d9f",
"type": "main",
"index": 0
}
]
]
},
"fede097e-50ae-452c-b317-819629e31d97": {
"main": [
[
{
"node": "03064eac-432f-452b-8170-6e661b7f39b0",
"type": "main",
"index": 0
}
]
]
},
"03064eac-432f-452b-8170-6e661b7f39b0": {
"main": [
[
{
"node": "a3d54194-cfb0-4497-8600-95399203959d",
"type": "main",
"index": 0
}
]
]
},
"e33a40c8-508e-43af-9b4f-991b35ec2f4a": {
"main": [
[
{
"node": "606783f7-091d-488b-bef8-12d25b88a42a",
"type": "main",
"index": 0
}
]
]
},
"606783f7-091d-488b-bef8-12d25b88a42a": {
"main": [
[
{
"node": "fede097e-50ae-452c-b317-819629e31d97",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - ファイル管理, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
Zoom参加者のために自動Airtable CRM記録作成
Zoom参加者に対して自動のにAirtable CRMレコードを作成
Code
Webhook
Airtable
+
Code
Webhook
Airtable
4 ノードDavid Olusola
顧客管理
Google Driveで保存し、TelegramでリマインドしてInstagram Reelをダウンロードを自動化
Google Drive の保存と Telegram によるリマインダーで Instagram Reel ダウンロードを自動化
If
Code
Webhook
+
If
Code
Webhook
11 ノードAryan Shinde
ファイル管理
CSV アップロードを Google Sheets および Drive へのインポート用にクレンのする
CSVアップロードをGoogle SheetsとDriveにインポートするためにクリーンアップし標準化
Code
Webhook
Google Drive
+
Code
Webhook
Google Drive
10 ノードDavid Olusola
文書抽出
Postizを使用してAIニュース動画を自動作成し、ソーシャルメディアへ投稿
GPT-4oとHeyGenを使用してAIニュースビデオを作成し、ソーシャルメディアに配信
Set
Code
Wait
+
Set
Code
Wait
37 ノードDavid Olusola
コンテンツ作成
CoinGeckoとExchangeRate-APIを使用してBTC-ETH価格と為替レートAPIを作成
CoinGeckoとExchangeRate-APIを使用してBTC/ETH価格とドル為替レートAPIを作成
Code
Merge
Webhook
+
Code
Merge
Webhook
7 ノードDavid Olusola
仮想通貨取引
AI履歴書選別:Gmail、GPT-4o、Googleスプレッドシート - 採用プロセスの自動化
AI履歴書選別:Gmail、GPT-4o、Googleスプレッドシート - 採用プロセスの自動化
Set
Switch
Google Drive
+
Set
Switch
Google Drive
23 ノードDavid Olusola
コンテンツ作成
ワークフロー情報
難易度
中級
ノード数7
カテゴリー2
ノードタイプ6
作成者
David Olusola
@dae221I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com
外部リンク
n8n.ioで表示 →
このワークフローを共有