This workflow follows the Google Drive Trigger → Google Sheets recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"name": "Google Sheets",
"type": "n8n-nodes-base.googleSheets",
"position": [
1240,
1120
],
"parameters": {
"range": "A:D",
"options": {},
"sheetId": "qwertz",
"operation": "append",
"authentication": "oAuth2"
},
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "AWS Transcribe 2",
"type": "n8n-nodes-base.awsTranscribe",
"position": [
920,
1120
],
"parameters": {
"operation": "get",
"transcriptionJobName": "={{$json[\"Key\"]}}"
},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "AWS Transcribe 1",
"type": "n8n-nodes-base.awsTranscribe",
"position": [
600,
1120
],
"parameters": {
"options": {},
"mediaFileUri": "=s3://{{$node[\"AWS S3 2\"].parameter[\"bucketName\"]}}/{{$json[\"Key\"]}}",
"transcriptionJobName": "={{$json[\"Key\"]}}"
},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "AWS S3 1",
"type": "n8n-nodes-base.awsS3",
"position": [
280,
1120
],
"parameters": {
"tagsUi": {
"tagsValues": [
{
"key": "source",
"value": "gdrive"
}
]
},
"fileName": "={{$json[\"name\"]}}",
"operation": "upload",
"binaryData": false,
"bucketName": "mybucket",
"fileContent": "street",
"additionalFields": {}
},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "AWS S3 2",
"type": "n8n-nodes-base.awsS3",
"position": [
440,
1120
],
"parameters": {
"options": {},
"operation": "getAll",
"bucketName": "mybucket"
},
"credentials": {
"aws": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
1080,
1120
],
"parameters": {
"values": {
"number": [
{
"name": "transcription_date",
"value": "={{$node[\"AWS Transcribe 1\"].json[\"CreationTime\"]}}"
}
],
"string": [
{
"name": "recording_name",
"value": "={{$node[\"AWS Transcribe 1\"].json[\"TranscriptionJobName\"]}}"
},
{
"name": "recording_link",
"value": "={{$node[\"Google Drive Trigger\"].json[\"webContentLink\"]}}"
},
{
"name": "transcription",
"value": "={{$json[\"transcript\"]}}"
}
]
},
"options": {}
},
"typeVersion": 1
},
{
"name": "Google Drive Trigger1",
"type": "n8n-nodes-base.googleDriveTrigger",
"position": [
120,
1120
],
"parameters": {
"event": "fileCreated",
"options": {},
"triggerOn": "specificFolder",
"folderToWatch": "https://drive.google.com/drive/folders/[your_id]"
},
"credentials": {
"googleDriveOAuth2Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
},
{
"name": "Wait",
"type": "n8n-nodes-base.wait",
"position": [
760,
1120
],
"parameters": {
"resume": "webhook",
"options": {
"responsePropertyName": "transcript"
},
"responseMode": "lastNode"
},
"typeVersion": 1
}
],
"connections": {
"Set": {
"main": [
[
{
"node": "Google Sheets",
"type": "main",
"index": 0
}
]
]
},
"Wait": {
"main": [
[
{
"node": "AWS Transcribe 2",
"type": "main",
"index": 0
}
]
]
},
"AWS S3 1": {
"main": [
[
{
"node": "AWS S3 2",
"type": "main",
"index": 0
}
]
]
},
"AWS S3 2": {
"main": [
[
{
"node": "AWS Transcribe 1",
"type": "main",
"index": 0
}
]
]
},
"AWS Transcribe 1": {
"main": [
[
{
"node": "Wait",
"type": "main",
"index": 0
}
]
]
},
"AWS Transcribe 2": {
"main": [
[
{
"node": "Set",
"type": "main",
"index": 0
}
]
]
},
"Google Drive Trigger1": {
"main": [
[
{
"node": "AWS S3 1",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
awsgoogleDriveOAuth2ApigoogleSheetsOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Transcribe Audio Files From Cloud Storage. Uses googleSheets, awsTranscribe, awsS3, googleDriveTrigger. Event-driven trigger; 8 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
This workflow transcribes audio files stored in AWS S3 and stores the information in Google Sheets. Google Drive Trigger node triggers the workflow when a new file is uploaded in Google Drive. AWS S3
Monitor Google Drive folder, parsing PDF, DOCX and image file into a destination folder, ready for further processing (e.g. RAG ingestion, translation, etc.) Keep processing log in Google Sheet and se
Freelancers, small business owners, and accountants who want to automate receipt management without manual data entry.
Gemini File Search - Drive Watcher. Uses googleDriveTrigger, googleSheets, googleDrive, httpRequest. Event-driven trigger; 16 nodes.
Lease Agreement Analyzer for Renters. Uses googleDriveTrigger, googleDrive, n8n-nodes-pdfvector, googleSheets. Event-driven trigger; 12 nodes.