У нас вы можете посмотреть бесплатно I Built My Own Voice-to-Text Tool in n8n (Better Than Paid Apps!) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, I’ll show you how I built a 100% free voice-to-text automation tool using n8n — no paid APIs, no coding background needed! 🎉 This workflow automatically: 1️⃣ Lets you upload any audio file using an n8n Form node. 2️⃣ Sends it to Speechmatics API for AI-powered transcription. 3️⃣ Extracts and cleans the transcript automatically. 4️⃣ Saves the final text file directly to Google Drive. And the best part? It’s all done inside n8n — a completely free, no-code automation platform that’s more flexible than many paid transcription tools out there. 🚀 ⚙️ Workflow Steps: 🧩 Form Trigger — Upload your audio (MP3, AAC, WAV, etc.) 🌐 HTTP Node — Send the file to Speechmatics API 💬 HTTP Node — Fetch the transcription result 🧠 AI Node — Clean and format the text automatically ☁️ Google Drive Node — Upload the final transcript --------------------------------------------------------------------------------------------------------------------- 💻 n8n Code Snippet: Use this Function Node to extract the clean text from the Speechmatics JSON output 👇 const results = $json.results || []; let transcript = ""; for (const r of results) { if (r.alternatives && r.alternatives[0]?.content) { transcript += r.alternatives[0].content + " "; } } return [{ json: { transcript: transcript.trim() } }]; This simple script merges all word segments into one readable transcript that you can pass to your AI node for cleanup or directly upload to Google Drive. --------------------------------------------------------------------------------------------------------------------- 🧾 Free Tools Used: 🧠 n8n (Free & Open Source) 🎧 Speechmatics API (Free Plan) ☁️ Google Drive (for saving text output) --------------------------------------------------------------------------------------------------------------------- ❤️ Support & Subscribe If you found this automation useful, please like, subscribe, and share! Let’s make automation easier (and free!) for everyone. 💪