Skip to main content

Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock

Workflow preview

Workflow preview
100%
Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

Who is this for? Creators, agencies, and marketers who need short form vertical video at scale. Anyone who wants to turn a topic into an edited “talking shorts” style clip without opening a video e...

Best for

  • Content Creation automation workflows
  • Multimodal AI automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

@n8n/n8n-nodes-langchain.lmchatanthropic, @n8n/n8n-nodes-langchain.lmchatopenai, @n8n/n8n-nodes-langchain.outputparserstructured, n8n-nodes-base.splitinbatches, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.wait, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Matty Reed.

Original n8n.io source

1.1 Workflow description

Title
Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock
Workflow name
Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock

Who is this for?

  • Creators, agencies, and marketers who need short-form vertical video at scale.
  • Anyone who wants to turn a topic into an edited “talking shorts” style clip without opening a video editor.

What problem does it solve?

Manually producing shorts is slow and repetitive. You have to write the script, hunt for b-roll, generate voiceover, layer music, edit timing, and export. This workflow automates that from prompt to rendered MP4 using AI, stock video, and Creatomate.

Note: this template requires a Creatomate template like the one shown below:

How it works

  1. You submit a topic in a simple n8n form.
  2. The workflow uses an AI model to generate a YouTube Shorts style script (~100 words) with hook, body, and looping ending.
  3. A second AI step turns that script into 8 visual search terms (for example “person typing at desk,” “happy team in office,” “corporate meeting”) that are likely to exist in stock footage.
  4. For each term, the workflow calls the Pexels Videos API and pulls the best portrait clip. It fetches clip details and filters files under 50 MB, then keeps the largest high quality version under that limit.
  5. The selected clip URLs are combined into a list that will later map to eight background layers in the Creatomate template.
  6. The generated script is sent to ElevenLabs (text-to-speech) to create the voiceover audio file.
  7. That audio is uploaded to Google Drive. The workflow then:
    • Randomly picks a background music track from a Drive folder.
    • Sets the Drive file sharing to “anyone with the link” so Creatomate can fetch it directly.
  8. The workflow calls Creatomate’s Render API:
    • Injects the voiceover URL, the chosen music URL, and the eight stock video URLs into a predefined vertical template.
    • Also enables auto-subtitles in the template by linking the transcript to on-screen captions.
  9. The workflow polls Creatomate until render status is succeeded.
  10. When rendering is done, cleanup runs:
    • The temporary voice file in Drive is deleted.
    • Final output metadata (including the render ID and status) is passed to the last node.

Result: You get an edited 9:16 short with stock b-roll, captions, voiceover, background music, and transitions.

Setup steps

  1. n8n
    1. Import this workflow JSON into n8n.
    2. Expose the included Form Trigger to capture the topic input.
  2. AI script + search terms
    1. Connect your AI model credentials in the Short Text node for script generation.
    2. Connect your AI model credentials in the Video Search Terms node for visual search term generation.
    3. Confirm both nodes are wired to output structured JSON to their paired Structured Output Parser nodes.
  3. Stock footage
    1. Add your Pexels API key as the Authorization header in both Search Videos and Get The Video Details.
    2. Keep orientation=portrait so clips match 9:16.
  4. Voiceover
    1. Add your ElevenLabs API key to the Generate Voice request header (xi-api-key).
    2. Set the voice ID in the ElevenLabs URL if you want a different voice.
  5. Google Drive
    1. Connect Google Drive OAuth in Google Drive, List Short Music Files, and Set File Permissions.
    2. In List Short Music Files, point q and folderId to the folder that stores your background music tracks.
    3. Confirm Set File Permissions is using role: reader, type: anyone so Creatomate can fetch the audio file.
  6. Creatomate render
    1. Set your Creatomate API key (Authorization: Bearer <key>) in Create Short and Check Video Status.
    2. Replace template_id with your own Creatomate template ID if different.
    3. Map each Background-1 ... Background-8 field in the JSON body to the combined clip URLs. These correspond to layers in your Creatomate template.
  7. Test end to end
    1. Run the workflow with a sample topic.
    2. Confirm:
      • Script is generated.
      • At least 8 stock clips are found.
      • Voice file uploads to Drive and becomes publicly readable.
      • Creatomate render finishes with status = succeeded.
    3. Adjust template timing and transitions in Creatomate if visuals do not match pacing.

Notes

  • The cleanup step deletes the temporary voiceover file from Drive after render to avoid clutter.
  • The workflow chooses a random music track each run to keep videos from sounding identical.
  • The render loop will keep polling Creatomate until the final MP4 is ready.

Resources

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Anthropic Chat Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatAnthropic - lmChatAnthropic
Config choices
Version 1.2

Block 2 - OpenAI Chat Model

Type / Role
@n8n/n8n-nodes-langchain.lmChatOpenAi - lmChatOpenAi
Config choices
Version 1

Block 3 - Structured Output Parser

Type / Role
@n8n/n8n-nodes-langchain.outputParserStructured - outputParserStructured
Config choices
Version 1.2

Block 4 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 5 - Format For Loop Over Items

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Get The Video Details

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 7 - Search Videos

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 8 - Find Smaller Video File

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Wait

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 10 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Generate Voice

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 12 - Structured Output Parser1

Type / Role
@n8n/n8n-nodes-langchain.outputParserStructured - outputParserStructured
Config choices
Version 1.2

Block 13 - Set File Permissions

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 14 - Format Video Links

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 15 - Create Short

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 16 - Wait1

Type / Role
n8n-nodes-base.wait - wait
Config choices
Version 1.1

Block 17 - If

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 18 - Check Video Status

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 19 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 20 - Finished

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 21 - Delete Audio

Type / Role
n8n-nodes-base.googleDrive - googleDrive
Config choices
Version 3

Block 22 - List Short Music Files

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 23 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 24 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Showing the first 24 of 31 workflow blocks. Download the JSON for the full node graph.

3. Summary Table

Workflow Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock
Complexity advanced
Nodes 31
Categories Content Creation, Multimodal AI
Author Matty Reed
Published 30 Oct 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/10308/10308.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Generate AI short-form videos with Creatomate, ElevenLabs & Pexels Stock do?

Who is this for? Creators, agencies, and marketers who need short form vertical video at scale. Anyone who wants to turn a topic into an edited “talking shorts” style clip without opening a video e...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Content Creation, Multimodal AI use case.