Skip to main content

Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite

Workflow preview

Workflow preview
100%
Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Overview This workflow turns audio attachments you receive by Gmail into Japanese transcripts and structured AI summaries, then saves everything to Google Drive and Google Sheets while notifying yo...

Best for

  • Document Extraction automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.gmailtrigger, n8n-nodes-base.code, n8n-nodes-base.googledrive, @n8n/n8n-nodes-langchain.openai, n8n-nodes-base.converttofile, n8n-nodes-base.googlesheets, n8n-nodes-base.gmail, n8n-nodes-base.slack

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by SOLOVIEVA ANNA.

Original n8n.io source

1.1 Workflow description

Title
Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite
Workflow name
Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite

Overview

This workflow turns audio attachments you receive by Gmail into Japanese transcripts and structured AI summaries, then saves everything to Google Drive and Google Sheets while notifying you via Gmail and Slack. Every time an email with a voice recording arrives, the audio is stored in a dated folder, fully transcribed in Japanese, summarized into clear meeting-style points, and logged so you can quickly review and search later.

Audio Email to Japanese Transcr…

Audio Email to Japanese Transcript with AI Summary & Multi-Channel Notification

Who this is for

People who get voice memos or meeting recordings as email attachments

Teams that want clear Japanese transcripts plus action-item summaries from calls

Anyone who wants audio notes automatically archived and searchable in Drive/Sheets

How it works

Trigger: New Gmail with audio attachment A Gmail Trigger watches your inbox, downloads attachments for each new email, and passes them into the workflow.

Split & filter attachments A Code node splits the email into one item per attachment and normalizes the binary data to binary.data. A Filter node keeps only audio files (mp3, wav, m4a, ogg) and discards everything else.

Create date-based Drive folder & upload audio A Code node builds a YYYY/MM folder path from the current date. A Google Drive node creates that folder (if it doesn’t exist) under your chosen parent folder. A Merge node combines folder info with file info, and the audio file is uploaded into that folder so all recordings are organized by year/month.

Transcribe audio to Japanese text An HTTP Request node calls the OpenAI Audio Transcriptions API (gpt-4o-transcribe) with the audio file. The prompt tells the model to produce a verbatim Japanese transcript (no summarization, no guessing), returned as plain text.

Generate structured AI summary The transcript is sent to an OpenAI Chat node (gpt-4o), which outputs JSON with:

title: short Japanese title for the recording

points: key discussion points (array)

decisions: decisions made (array)

actionItems: action items with owner/deadline (array) A Set node then formats this JSON into a Markdown summary (summaryContent) with sections for 要点 / 決定事項 / アクションアイテム.

Save transcript & summary files to Drive The transcript text is converted into a .txt file and uploaded to the same YYYY/MM folder. The Markdown summary is converted into a .md file (e.g. xxx_summary.md) and uploaded as well. Each file is then shared in Drive so you have accessible web links to both transcript and summary.

Log to Google Sheets A Code node collects the email subject, file name, full transcript, formatted summary, and Drive links into one JSON object. A Google Sheets node appends a new row with timestamp, subject, summary, transcript, and link so you get a running log of all processed audios.

Notify via Gmail & Slack Finally, the workflow:

Sends a Gmail message back to the original sender with the meeting summary and links

Posts a Slack notification in your chosen channel, including subject, file name, summary text, and Drive link

How to set up

Connect your Gmail, Google Drive, Google Sheets, Slack, and OpenAI credentials in the respective nodes.

In the Gmail Trigger, narrow the scope if needed (e.g. specific label, sender, or inbox).

In the Drive nodes, set the parent folder where you want the YYYY/MM subfolders to be created.

In the Google Sheets node, point to your own spreadsheet and sheet name.

In the Slack node, select the channel where reminders should be posted.

Make sure your OpenAI credentials have access to both audio transcription and chat endpoints.

Customization ideas

Filter by sender, subject keyword, or label so only certain emails are processed.

Change the folder structure (e.g. ProjectName/YYYY/MM or YYYY/MM/DD) in the folder-path Code node.

Adjust the transcription prompt (e.g. allow light punctuation clean-up, use another language).

Modify the summary format or add extra fields (e.g. meeting participants, project name) in the AI prompt and Markdown template.

Send notifications to other tools: add branches for Notion, LINE, Teams, or additional Slack channels.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - New Gmail with Audio

Type / Role
n8n-nodes-base.gmailTrigger - gmailTrigger
Config choices
Version 1.3

Block 2 - Generate Year-Month Folder Path

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 3 - Create Folder If Not Exists

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 4 - Upload Audio to Drive

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 5 - Generate AI Summary

Type / Role
@n8n/n8n-nodes-langchain.openAi - openAi
Config choices
Version 1.8

Block 6 - Convert Transcript to TXT

Type / Role
n8n-nodes-base.convertToFile - convertToFile
Config choices
Version 1.1

Block 7 - Convert Summary to MD

Type / Role
n8n-nodes-base.convertToFile - convertToFile
Config choices
Version 1.1

Block 8 - Upload Transcript to Drive

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 9 - Upload Summary to Drive

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 10 - Share Transcript File

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 11 - Share Summary File

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 12 - Prepare Sheets Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 13 - Log to Google Sheets

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.7

Block 14 - Send Gmail Notification

Type / Role
n8n-nodes-base.gmail - gmail
Config choices
Version 2.1

Block 15 - Send Slack Notification

Type / Role
n8n-nodes-base.slack - slack
Config choices
Version 2.3

Block 16 - Code in JavaScript

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Filter

Type / Role
n8n-nodes-base.filter - filter
Config choices
Version 2.2

Block 18 - Merge

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 19 - Edit Fields

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 20 - HTTP Request

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 21 - Template Overview (read me)

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 22 - Step 1 - Intake

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 23 - Step 2 - Drive storage

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Step 3 - AI transcription & summary

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Showing the first 24 of 26 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite
Complexity advanced
Nodes 26
Categories Document Extraction, AI Summarization
Author SOLOVIEVA ANNA
Published 17 Dec 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/11883/11883.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Convert audio emails to Japanese transcripts with OpenAI GPT-4o & Google Suite do?

Overview This workflow turns audio attachments you receive by Gmail into Japanese transcripts and structured AI summaries, then saves everything to Google Drive and Google Sheets while notifying yo...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction, AI Summarization use case.