
Voice Note to Tweet
Description
Categories
š¤ AI & Machine Learning
Nodes Used
n8n-nodes-base.xn8n-nodes-base.googleDriven8n-nodes-base.httpRequest
PriceFree
Views0
Last Updated11/28/2025
workflow.json
{
"meta": {
"instanceId": "__PLACEHOLDER_INSTANCE_ID__"
},
"name": "Voice Note to Tweet",
"nodes": [
{
"id": "watch-drive-folder",
"name": "Watch Google Drive Folder",
"type": "n8n-nodes-base.googleDrive",
"notes": "š Watch for New Voice Notes\n\nMonitors a specific Google Drive folder for uploaded audio files.\n\nš¹ Supported formats: .mp3, .m4a, .wav\n\nš” Tip: Name files clearly (e.g., 'Tip-about-boundaries.m4a')\n\nTriggers when a new audio file is added.",
"position": [
250,
300
],
"parameters": {},
"typeVersion": 2,
"notesAlignment": "top"
},
{
"id": "transcribe-audio",
"name": "Transcribe with AssemblyAI",
"type": "n8n-nodes-base.httpRequest",
"notes": "šļø Transcribe Audio to Text\n\nSends the voice note to AssemblyAI for speech-to-text conversion.\n\nš Requires:\n- AssemblyAI API key\n- Publicly accessible file (Google Drive link)\n\nš” Response includes transcript + key phrases.\n\nWait for completion (add delay or webhook if needed).",
"position": [
500,
300
],
"parameters": {},
"notesAlignment": "top"
},
{
"id": "post-to-x",
"name": "Post to X (Twitter)",
"type": "n8n-nodes-base.x",
"notes": "š¦ Post to X (Twitter)\n\nPublishes the transcribed text as a tweet.\n\nš§ Customize:\n- Add hashtags\n- Trim to 280 chars\n- Thread long content\n\nš” Use a Function node before to clean up text (remove filler words, add emojis).",
"position": [
750,
300
],
"parameters": {},
"typeVersion": 1,
"notesAlignment": "top"
}
],
"active": false,
"pinData": {},
"settings": {
"callerPolicy": "none",
"saveDataError": "all",
"executionOrder": "parallel",
"saveDataSuccess": "all"
},
"connections": {
"Watch Google Drive Folder": {
"main": [
[
{
"node": "Transcribe with AssemblyAI",
"type": "main",
"index": 0
}
]
]
},
"Transcribe with AssemblyAI": {
"main": [
[
{
"node": "Post to X (Twitter)",
"type": "main",
"index": 0
}
]
]
}
}
}