🔓 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

Google Sheets + ElevenLabs: Shorts ready to post

Lisa Granqvist Partner Workflow Automation Expert

Posting Shorts “consistently” sounds simple until you’re stuck rewriting scripts, chasing voiceovers, fixing captions, and hunting down files in Drive. The ideas are there. The production grind is what kills momentum.

Sheets Shorts automation hits hardest for content managers trying to keep a weekly pipeline full. Solo creators feel it too. And honestly, agencies producing batches for clients get buried in versioning and approvals fast.

This workflow turns a row in Google Sheets into a finished, vertical video with voice, captions, and final rendering handled for you. You’ll see how it works, what you need, and where the common setup traps are.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Google Sheets + ElevenLabs: Shorts ready to post

The Problem: Turning Ideas Into Shorts Takes Too Many Tools

A motivational Short looks “easy” from the outside. But the real work is hidden. You draft a script, tweak it to fit under 60 seconds, generate an image that actually matches the message, record (or regenerate) voice until it sounds right, then try to sync captions that don’t look cheap. Now multiply that by 10 videos. It’s not just time. It’s context switching, repetitive exports, and little errors that show up after you’ve already posted.

None of these alone is the problem. Together, they are.

  • You end up rewriting the same style of script over and over because there’s no repeatable pipeline.
  • Voiceovers become a bottleneck, especially when you need consistency across a series.
  • Caption styling and timing steals “creative” hours even though it is mostly mechanical work.
  • File handling gets messy fast, so you lose track of what is final, what is draft, and what already shipped.

The Solution: Google Sheets Rows In, Posted-Ready Shorts Out

This n8n workflow treats Google Sheets like your content backlog and production queue. You write (or paste) simple motivational ideas into rows, then run the workflow to generate scripts using a local Ollama model, create matching black-and-white visuals through fal.ai, and synthesize a voiceover with ElevenLabs. From there, it calls a self-hosted video processing API to build clips with zoom effects, stitch segments into a finished vertical video, and burn in styled captions that look intentional instead of auto-generated. The result lands as a social-ready video (9:16, under 60 seconds), so you are not stuck assembling parts by hand.

The workflow starts when you trigger it in n8n and it pulls rows from Google Sheets. AI generates the script plus structured fields for both image prompts and audio lines, then separate branches create the image and voice. Finally, the workflow renders, trims, captions, merges audio, and compiles the final video list for export and storage.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you want 10 motivational Shorts ready for the week. Manually, you might spend about 20 minutes writing and tightening each script, another 10 minutes generating visuals, then 20 minutes on voice, captions, and exporting. That’s roughly 8 hours for 10 videos, and it’s easy to blow past that if you redo audio. With this workflow, you spend about 30 minutes preparing 10 rows in Google Sheets, then let the automation render in the background. You still review outputs, but you are no longer assembling them from scratch.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets for storing ideas and tracking status.
  • ElevenLabs to synthesize voiceovers.
  • Ollama for local script generation (free).
  • fal.ai to generate black & white images.
  • Self-hosted video processing API for rendering, captions, and merging.
  • API keys (get them from your ElevenLabs and fal.ai dashboards).

Skill level: Intermediate. You’ll connect accounts, add API keys, and may tweak a few fields to match your Sheet columns.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

You trigger a run and n8n pulls rows from Google Sheets. The workflow starts with a manual run (great for batches) and reads the sheet rows you want to turn into videos.

Ollama turns each idea into a structured “video plan.” Instead of dumping plain text, the LLM chain produces structured outputs that separate what belongs in the voiceover, what belongs in the image prompt, and what belongs in captions.

Two branches build assets at the same time. One branch generates an image via fal.ai, fetches the image file, and processes it for video. The other branch sends the audio script to ElevenLabs, retrieves the voice output, and post-processes metadata so downstream nodes can sync correctly.

The video API renders, stitches, trims, captions, then fuses audio. n8n loops through clips in batches, renders segments, combines them, applies caption styling, and produces a final vertical video that’s ready for TikTok, Reels, or Shorts.

You can easily modify the caption style and the script tone to match your brand. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Manual Trigger

Start the workflow with a manual trigger so you can test the full media assembly pipeline on demand.

  1. Add and open Manual Execution Start.
  2. Leave all fields at their defaults since this is a manual trigger.
  3. Connect Manual Execution Start to Retrieve Sheet Rows.

If you plan to schedule this later, replace Manual Execution Start with a time-based trigger after initial testing.

Step 2: Connect Google Sheets

Pull source rows from Google Sheets to feed the AI script generation and media assembly stages.

  1. Open Retrieve Sheet Rows and configure the spreadsheet and sheet range you want to read.
  2. Ensure the output fields include everything needed for the scripts and asset generation downstream.
  3. Connect Retrieve Sheet Rows to Core LLM Pipeline.

⚠️ Common Pitfall: If your sheet headers change, downstream script logic can break. Keep column names consistent with your Code node assumptions.

Step 3: Set Up the LLM Pipeline and Parallel Script Preparation

Generate structured instructions for images and audio, then split into parallel processing branches for image and voice creation.

  1. Open Core LLM Pipeline and confirm that Ollama Chat Engine is connected as its language model.
  2. Ensure Structured Output Reader is attached to Core LLM Pipeline as the output parser; add credentials to Core LLM Pipeline if your LLM provider requires them.
  3. Verify the parallel split: Core LLM Pipeline outputs to both Prepare Image Scripts and Prepare Audio Scripts in parallel.
  4. Connect Prepare Image Scripts to Image Script Logic, then to Generate Image.
  5. Connect Prepare Audio Scripts to Audio Script Logic, then to Synthesize Voice.

Structured Output Reader is an AI sub-node—configure any required credentials on Core LLM Pipeline, not on the parser itself.

Step 4: Configure Image and Voice Processing Branches

Process image and voice outputs independently, then merge them for unified assembly.

  1. For the image branch, connect Generate ImageFetch Image AssetImage Processing LogicCombine Branch Results.
  2. For the audio branch, connect Synthesize VoiceRetrieve Voice OutputVoice Post ProcessCombine Branch Results.
  3. Verify that Combine Branch Results feeds into Assign Runtime Fields.

⚠️ Common Pitfall: If either branch returns empty data, Combine Branch Results will produce incomplete runtime fields. Validate both outputs during testing.

Step 5: Configure the Media Assembly Pipeline

Build clips, apply audio processing, and stitch final video segments with captions.

  1. Connect Assign Runtime FieldsConstruct Faceless ListDistribute EntriesRender ClipAssemble Clip ArraySegment Records.
  2. From Segment Records, connect Fetch Audio MetadataTrim FootageFuse Audio and Video.
  3. Finalize with Compile Video ListStitch Video SegmentsAdd Captions.
  4. Group configuration for the 10+ httpRequest nodes (e.g., Render Clip, Trim Footage, Stitch Video Segments) to ensure endpoint URLs, headers, and payloads are consistent with your media API.
  5. Group configuration for the 7 code nodes (e.g., Assemble Clip Array, Compile Video List) to align expected input/output formats across the pipeline.

Keep the media API response formats stable. Small changes in JSON keys often break code-node parsing in Assemble Clip Array and Compile Video List.

Step 6: Test and Activate Your Workflow

Run a manual test to verify each branch, then activate the workflow for production use.

  1. Click Execute Workflow from Manual Execution Start to run the full pipeline.
  2. Confirm that Core LLM Pipeline successfully populates both script branches and that Combine Branch Results contains merged output.
  3. Verify final outputs after Add Captions to ensure the stitched video includes audio, visuals, and captions.
  4. When satisfied, toggle the workflow to Active for production use.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • Google Sheets credentials can expire or need specific permissions. If things break, check the n8n Credentials screen and your Google account’s connected apps 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.

Frequently Asked Questions

How long does it take to set up this Sheets Shorts automation automation?

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

Do I need coding skills to automate motivational Shorts production?

No coding required. You’ll mostly connect services and map your Google Sheets columns to the workflow fields.

Is n8n free to use for this Sheets Shorts automation 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 usage costs for ElevenLabs and fal.ai, plus whatever your video processing server costs to run.

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.

Can I customize this Sheets Shorts automation workflow for a different niche (quotes, fitness, sales)?

Yes, and it’s usually just prompt and field changes. Update the tone and structure in the Ollama LLM chain so the script matches your niche, then tweak the caption styling in the caption step used by the video API. Common customizations include changing the hook format, switching from black-and-white to a branded look, and adding a call-to-action line at the end of every voiceover.

Why is my Google Sheets connection failing in this workflow?

Usually it’s expired OAuth credentials or the Google account doesn’t have access to the target spreadsheet. Reconnect the Google Sheets credential in n8n, then confirm the Sheet is shared with that same Google account. If it still fails, double-check you’re pointing at the right spreadsheet ID and worksheet tab name, because a renamed tab can quietly break lookups.

How many videos can this Sheets Shorts automation automation handle?

Practically, as many as your n8n execution limits and your rendering server can handle.

Is this Sheets Shorts automation automation better than using Zapier or Make?

Often, yes, because this workflow needs branching, looping, and multiple HTTP rendering steps that get awkward (and expensive) in simpler builders. n8n handles complex logic without turning every conditional into a premium add-on. You can also self-host, which matters when you start running big batches. Zapier or Make can still be fine for lightweight two-step publishing tasks. Talk to an automation expert if you want help choosing the simplest option for your volume.

Set this up once and your Google Sheet turns into a simple production machine. The workflow handles the repetitive parts so you can focus on ideas, packaging, and posting.

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