🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

ElevenLabs to Google Sheets, promo videos tracked

Lisa Granqvist Partner Workflow Automation Expert

You finish a promo video, paste the link “somewhere safe,” and then… it disappears. A week later you’re hunting through chats, cloud folders, and old tabs, trying to find the final file, the captions, or even the right version.

This hits marketers hardest, honestly. But content creators and small teams running weekly promos feel it too. With ElevenLabs Sheets tracking, you stop losing assets and start logging every finished video link in one place (with a status column so you know what’s done).

This workflow creates the video, waits for processing, grabs the final downloadable URL, then updates Google Sheets automatically. You’ll see how it works, what you need, and where people usually get stuck.

How This Automation Works

See how this solves the problem:

n8n Workflow Template: ElevenLabs to Google Sheets, promo videos tracked

The Challenge: Promo video assets get messy fast

Promo video production looks simple until you do it every day. Script in one doc, voiceover in another tool, images in a folder, video output somewhere else, and captions in yet another place. Then comes the real pain: someone asks for “the final link,” and you’re not even sure which link is final. The mental load is constant, and small mistakes (wrong asset, wrong version, missing captions) cost you extra revisions and delayed posting.

It adds up fast. Here’s where it usually breaks down when you’re doing this manually.

  • You end up copying and pasting links between tools, and one forgotten paste means the asset is effectively lost.
  • Processing steps happen out of order, so people share a draft link before the final render is ready.
  • Captions get separated from the video file, which means last-minute scrambling right before upload.
  • Status tracking lives in someone’s head, so the same work gets re-done when teammates “can’t find it.”

The Fix: Auto-generate the video and log the final link

This automation runs your promo video creation like a small assembly line. You launch it, the workflow assigns a category, requests a transcript/script, and sends that text to ElevenLabs for a natural voiceover. That audio is stored and made accessible through a public link so the rest of the pipeline can use it without manual downloads. Next, the workflow transcribes the audio (so you can reuse the spoken content), turns that transcript into image text snippets, generates image prompts, and converts those prompts into usable image files. From there, it sends an image into Hailuo AI to generate a video clip, waits for processing, and keeps checking until the download link is actually ready.

Once the video file exists, the workflow pulls it in, stores it, merges media inputs (like transcript and assets), maps music with the video, and composes the final output through an HTTP-based render step. Finally, it requests captions, parses the caption data, and updates your Google Sheet with the finished video URL and status so you can track everything from one tab.

What Changes: Before vs. After

Real-World Impact

Say you produce 5 promo videos a week. Manually, you might spend about 20 minutes per video moving assets around (download audio, upload audio, grab video link, find captions, update a tracker), which is roughly 2 hours weekly just in “admin.” With this workflow, you kick it off once and let processing run in the background, then the final video URL and status land in Google Sheets automatically. You still review the output, but the busywork largely disappears.

Requirements

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets to log video title, URL, and status.
  • ElevenLabs for realistic voiceover generation.
  • API keys for your AI tools (get them in each provider’s dashboard, then add to n8n credentials).

Skill level: Intermediate. You’ll be comfortable connecting accounts, adding API keys, and testing a few runs to confirm the sheet updates correctly.

Need help implementing this? Talk to an automation expert (free 15-minute consultation).

The Workflow Flow

Manual launch kicks things off. You start the run when you’re ready, which is useful for promo batches or one-off campaigns. The workflow immediately tags the run with a video category so your tracking stays organized.

Script and voice are generated, then made reusable. An HTTP request pulls or generates transcript text, then ElevenLabs produces the audio. The audio is stored in cloud storage and converted into a public link so downstream services can fetch it reliably.

Transcript gets repurposed into visuals and motion. The workflow transcribes the audio, combines the text, builds a list of image-friendly snippets, and generates image prompts. Those prompts are turned into image files, stored, and passed to Hailuo for image-to-video rendering while n8n waits and checks status until the render is complete.

Final video is composed, captioned, and logged. The created video file is fetched and stored, media inputs are merged, music is mapped, and a final composition step runs via HTTP. Then captions are requested, parsed, and the workflow updates your Google Sheet with the final downloadable URL and status.

You can easily modify the Google Sheet columns to match your internal workflow (owner, campaign, publish date) based on your needs. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Manual Trigger

Start the workflow manually so you can validate every stage of the video pipeline before scheduling it.

  1. Add the Manual Launch Trigger node as the workflow entry point.
  2. Open Manual Launch Trigger and ensure it is enabled (the node is currently disabled in the workflow).
  3. Connect Manual Launch Trigger to Assign Video Category.

⚠️ Common Pitfall: If Manual Launch Trigger is disabled, the workflow will never start when you click Execute Workflow.

Step 2: Connect Google Cloud Storage and Google Sheets

This workflow stores audio, images, and video in cloud storage and writes final metadata to a spreadsheet.

  1. Open Store Audio File and add credentials.
  2. Open Store Image File and add credentials.
  3. Open Store Video File and add credentials.
  4. Open Update Google Sheet and add credentials.

Credential Required: Connect your Google Cloud Storage credentials in Store Audio File, Store Image File, and Store Video File. Credential Required: Connect your Google Sheets credentials in Update Google Sheet.

Step 3: Set Up the Audio Transcription Pipeline

This section generates audio, uploads it, and transcribes it to create text for the video narrative.

  1. Configure Assign Video Category to set any metadata fields required by your API calls.
  2. Set up the HTTP calls in Request Transcript and Retrieve ElevenLabs Audio to your transcript and audio providers.
  3. Confirm Store Audio File writes the file to your Google Cloud Storage bucket, then map the public URL in Set Public Audio Link.
  4. Configure Fetch Audio Asset and Run Whisper Transcription to send the public audio link to your transcription service.
  5. Note that Run Whisper Transcription outputs to both Combine Transcript Text and Build Image Text List in parallel.

If your HTTP APIs require authorization, add the appropriate auth headers inside each HTTP node (13 total httpRequest nodes are used across the workflow).

Step 4: Build Image Assets and Prepare Hailuo Video Input

This branch converts transcription output into image prompts, generates images, and prepares the first image for Hailuo video creation.

  1. In Build Image Text List, ensure the output is an array of prompt items expected by Split Image Items.
  2. Connect Split Image ItemsCreate Image PromptsSplit Prompt ItemsFetch Image Base64.
  3. Convert the image payload with Convert Base64 to File and store it with Store Image File.
  4. Use Limit First Image to select only the first image for the Hailuo request.

If the image service returns multiple items, confirm Split Prompt Items is configured to split the array correctly before Fetch Image Base64 runs.

Step 5: Configure Hailuo Processing and Status Loop

This section submits the image to Hailuo, waits for processing, and retrieves the resulting video file.

  1. Set up Hailuo API Call with the required request body and image reference.
  2. Use Wait for Hailuo Processing to pause the workflow before polling.
  3. Configure Check Hailuo Status and route it through Hailuo Status Check to either wait again or proceed.
  4. Once ready, retrieve the output with Retrieve Hailuo Download LinkFetch Video FileStore Video File.

⚠️ Common Pitfall: If Hailuo Status Check conditions are not set properly, the workflow may loop indefinitely between Wait for Hailuo Processing and Check Hailuo Status.

Step 6: Compose Final Video, Captions, and Spreadsheet Update

Combine the transcript and video file, request captions, and store results in Google Sheets.

  1. Merge transcript and video inputs using Merge Media Inputs, then map fields in Map Music With Video.
  2. Call the composition service in Compose Video and wait in Wait for Video Merge.
  3. Poll with Check Video Progress and route through Video Progress Check until complete.
  4. Set the final URL in Set Final Video Link, then request captions with Request Captions.
  5. Parse the captions in Parse Caption JSON and write final fields in Update Google Sheet.

Use Set Final Video Link to normalize video URLs before storing them so downstream caption parsing works consistently.

Step 7: Test and Activate Your Workflow

Run a full test to verify each API call, storage upload, and spreadsheet update before production use.

  1. Click Execute Workflow on Manual Launch Trigger and follow the run in the execution log.
  2. Confirm that the workflow uploads files in Store Audio File, Store Image File, and Store Video File.
  3. Verify that Update Google Sheet receives a row with the final caption data and video link.
  4. Once validated, enable the workflow and replace Manual Launch Trigger with a production trigger if needed.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Watch Out For

  • Google Sheets credentials can expire or need specific permissions. If things break, check the n8n Credentials panel and confirm the spreadsheet is shared with the connected Google account first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Common Questions

How quickly can I implement this ElevenLabs Sheets tracking automation?

About an hour if your API keys and Google Sheet are ready.

Can non-technical teams implement this video tracking automation?

Yes, but you’ll want one careful setup pass. No coding is required, though you will be pasting API keys and testing a run end-to-end.

Is n8n free to use for this ElevenLabs Sheets tracking workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in API costs from ElevenLabs and your other AI providers.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

How do I adapt this ElevenLabs Sheets tracking solution to my specific challenges?

You can. Most customization happens in the “Assign Video Category” and “Update Google Sheet” steps, where you decide how you label runs and what gets written to the sheet. If you want a different storage destination, swap the cloud storage steps and keep the final “Set Final Video Link” logic intact. Common tweaks include adding an “owner” column, writing the caption text into the sheet, or logging separate links for audio and video assets.

Why is my Google Sheets connection failing in this workflow?

Usually it’s expired Google authorization or the spreadsheet isn’t shared with the connected account. Reconnect Google Sheets in n8n credentials, then confirm the Sheet ID is correct and the file lives in a Drive the account can access. If it fails only sometimes, you may be hitting quota limits when running large batches, so spacing executions out can help.

What’s the capacity of this ElevenLabs Sheets tracking solution?

It scales mostly based on your AI providers, because rendering and transcription are the slow parts. n8n itself can run many executions, but you’ll wait on Hailuo processing and the video composition checks, so a big batch will take longer. If you self-host, there’s no execution limit in n8n, but your server and API rate limits still matter. Practically, teams run this for a few promos a day without thinking about capacity at all.

Is this ElevenLabs Sheets tracking automation better than using Zapier or Make?

Often, yes. This workflow relies on waiting, polling for status, merging multiple media inputs, and handling files, which is where n8n is simply more flexible (and less expensive at higher volume). Zapier or Make can still work, but you may find yourself stitching together multiple scenarios and paying more once you add “loop until complete” logic. If you just want “new row in a sheet when a link exists,” those tools are fine. If you want the full video pipeline plus logging, n8n is the cleaner fit. Talk to an automation expert if you want a quick recommendation for your stack.

Once this is in place, your promo videos stop living in five different places. The workflow runs, the sheet updates, and you move on to the next campaign.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal