Each times there a new video on a specific YouTube channel, create a short clip from it using AI.
This is composed of 2 n8n flows:
- Submit Reel Creation: This flow is triggered when a new video is published on a specific YouTube channel. It sends the video URL to Reka Clips API to create a short clip from the video.
- Check Reel Status: This flow checks the status of the clip creation process. Once the clip is ready, it retrieves the clip URL and shares it.
- Create a Data table named
videoswith the following columns:video_title(string)video_url(string)job_id(string)job_status(string)
- Import the two n8n workflows located in the
n8nfolder.
-
When New Video (trigger):
- Change the
YouTube channel IDof the Feed URL for the channel you want to monitor.
- Change the
-
Create Reel Creation Job:
- If you don't already have an API Key, get your free API key from Reka Platform.
- Add your
API Keyto the field Bearer Token in the Bearer Auth. - If needed, update the JSON parameters to customize the clip creation. By default it looks like this:
{ "video_urls": ["{{ $json.link }}"], "prompt": "Create an engaging short video highlighting the best moments", "generation_config": { "template": "moments", "num_generations": 1, "min_duration_seconds": 0, "max_duration_seconds": 30 }, "rendering_config": { "subtitles": true, "aspect_ratio": "9:16" } }This will create one short vertical clip (9:16) up to 30 seconds long, with subtitles, using the "moments" template.
-
Insert row:
- Make sure there is no error.
After saving the workflow, activate it to start monitoring the YouTube channel for new videos.
- Trigger:
- By default the trigger is manual, I prefer this when testing. Once you are happy with your setup, change it to a time trigger to run periodically (e.g., every 15-30 minutes). Checking too frequently may lead to hitting rate limits.
- Get Job Status:
- Same as before, add your
API Keyto the field Bearer Token in the Bearer Auth.
- Same as before, add your
- Append row in sheet:
If you have any questions or run into issues, feel free to open an issue. You can also join the Reka Community Discord for support and discussions.
Documentation for Reka Clips API can be found here: Clip Generation API (Reka Clip
This project is licensed under the MIT License. See the LICENSE file for details.



