
Voice Note to Tweet
説明
Categories
🤖 AI & Machine Learning
Nodes Used
n8n-nodes-base.xn8n-nodes-base.googleDriven8n-nodes-base.httpRequest
Price無料
Views0
最終更新11/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
}
]
]
}
}
}