Skip to main content

Turn long videos into social shorts with RenderIO and OpenAI

Workflow preview

Workflow preview
100%
Turn long videos into social shorts with RenderIO and OpenAI preview
Open on n8n.io

1. Workflow Overview

Who is this for Content creators, YouTubers, and social media managers who want to repurpose long form videos into short clips without doing it manually. Works on self hosted n8n instances. What it...

Best for

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

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.googledrivetrigger, n8n-nodes-base.set, n8n-nodes-base.googledrive, n8n-nodes-renderio.renderio, n8n-nodes-base.wait, n8n-nodes-base.if, n8n-nodes-base.httprequest

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
Turn long videos into social shorts with RenderIO and OpenAI
Workflow name
Turn long videos into social shorts with RenderIO and OpenAI

Who is this for

Content creators, YouTubers, and social media managers who want to repurpose long form videos into short clips without doing it manually. Works on self hosted n8n instances.

What it does

Monitors a Google Drive folder for new videos. When a video appears, the workflow downloads it, extracts the audio, transcribes it using Whisper, and sends the transcript to OpenAI to identify the best highlight moments. Each selected clip is then rendered in three aspect ratios (9:16 for TikTok, 9:16 for Reels, 1:1 for Square) using cloud based FFmpeg through RenderIO. The finished clips are uploaded back to Google Drive and every run is logged to a Google Sheet.

How it works

  1. Watch Drive Folder polls your source folder every minute and triggers when a new video file is detected.
  2. Set Config holds all tunable settings in one place: clip count, folder IDs, sheet IDs, and LLM model.
  3. The video is downloaded from Google Drive and uploaded to RenderIO for processing.
  4. Extract Audio runs an FFmpeg command to pull the audio track from the video.
  5. The audio is sent to Whisper for transcription. Both TXT and SRT transcript files are saved to Google Drive.
  6. Pick Clips sends the transcript to OpenAI, which returns timestamped highlight suggestions.
  7. Validate Clips checks that all timestamps and durations are valid before rendering.
  8. Each clip is rendered in three formats through RenderIO with separate FFmpeg commands for each aspect ratio.
  9. All rendered clips are downloaded and uploaded to a dedicated output folder in Google Drive.
  10. Append Clip Row logs each clip to a Google Sheet and Append Run Summary records the overall processing stats.

Requirements

  • A self hosted or cloud n8n instance (uses a community node)
  • The n8n-nodes-renderio community node installed via Settings > Community Nodes
  • A free RenderIO account and API key from renderio.dev
  • Google Drive and Google Sheets OAuth credentials
  • An OpenAI API key

How to set up

  1. Install the n8n-nodes-renderio community node from Settings > Community Nodes.
  2. Create credentials for Google Drive (OAuth2), Google Sheets (OAuth2), OpenAI, and RenderIO API.
  3. Import the workflow and open the Set Config node.
  4. Update the outputParentFolderId with the Google Drive folder ID where output folders should be created.
  5. Update the sheetId with your Google Sheet document ID.
  6. Set sheetTab and sheetRunsTab to the correct sheet tab IDs for clip logging and run summaries.
  7. Configure the Watch Drive Folder trigger node to point at your source video folder.
  8. Activate the workflow and drop a test video into the folder.

How to customize

  • Change clipCount in Set Config to generate more or fewer clips per video.
  • Swap llmModel from gpt-4o-mini to gpt-4o or another model for different clip selection quality.
  • Modify the FFmpeg commands in Build Commands for Clip to adjust resolution, bitrate, add watermarks, or change output formats.
  • Replace Google Drive with S3 or another storage provider if that fits your stack.
  • Add a Slack or Telegram notification node after the summary step to get alerted when processing finishes.

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 - Sticky Note

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

Block 2 - Sticky Note1

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

Block 3 - Sticky Note2

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

Block 4 - Sticky Note3

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

Block 5 - Sticky Note4

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

Block 6 - Sticky Note5

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

Block 7 - Sticky Note6

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

Block 8 - Sticky Note7

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

Block 9 - Sticky Note8

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

Block 10 - Sticky Note9

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

Block 11 - Sticky Note10

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

Block 12 - Sticky Note11

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

Block 13 - Google Drive Folder Trigger

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

Block 14 - Set Configuration Parameters

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 15 - Download Video from Drive

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

Block 16 - Upload Video to RenderIO

Type / Role
n8n-nodes-renderio.renderio - renderio
Config choices
Version 1

Block 17 - Retrieve RenderIO File

Type / Role
n8n-nodes-renderio.renderio - renderio
Config choices
Version 1

Block 18 - Create Google Drive Folder

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

Block 19 - Extract Audio with RenderIO

Type / Role
n8n-nodes-renderio.renderio - renderio
Config choices
Version 1

Block 20 - Wait 10 Seconds for Audio

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

Block 21 - Verify Audio Extraction

Type / Role
n8n-nodes-renderio.renderio - renderio
Config choices
Version 1

Block 22 - If Audio is Ready

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

Block 23 - Wait 30 Seconds for Audio Retry

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

Block 24 - Download Extracted Audio

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

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

3. Summary Table

Workflow Turn long videos into social shorts with RenderIO and OpenAI
Complexity advanced
Nodes 46
Categories Content Creation, Multimodal AI
Author RenderIO
Published 18 Apr 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15132/15132.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 Turn long videos into social shorts with RenderIO and OpenAI do?

Who is this for Content creators, YouTubers, and social media managers who want to repurpose long form videos into short clips without doing it manually. Works on self hosted n8n instances. What it...

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.