WorkflowActive
wiro / video-loop
video-loop
Repeat a video clip back-to-back and export one longer file. Video Loop trims inputs over 180s, supports 1–10 extra repeats, and caps output at 20 min.
Utility
Model ID
video-loop
Provider
wiro
Updated
1785771849
wiro playground—wiro/video-loop
Updated 1785771849
## Overview
Video Loop is a Wiro-native video utility that repeats an existing clip in sequence. It cuts overly long inputs to a fixed segment, then concatenates that segment multiple times into one file. You can also set a final target length to trim the finished result. This solves a common editing task without needing a timeline editor.
## What you can build
- Loopable background videos for landing pages and app store previews
- Longer “ambient” clips from short source footage for digital signage
- Repeated demo clips for product walkthrough kiosks
- Simple repeat exports for social posts that need a minimum duration
## Inputs
- One source video to repeat. Upload a file or provide a direct video URL that Wiro can fetch. If the source is longer than 180 seconds, only the first 180 seconds are used for looping.
- How many extra times the clip should repeat, as a whole number from 1 to 10. This value counts extra repeats. A value of 1 plays the clip 2 times total.
- Optional final length for the exported video. Provide either seconds (example: 90) or a timecode string (example: 00:05:00). The maximum is 1200 seconds.
## Outputs
Wiro returns one rendered video file that contains the repeated clip sequence. The result includes a downloadable file URL and basic file metadata, such as file name, MIME type, and file size.
## Limitations
- Inputs longer than 180 seconds are cut. Only that 180-second segment repeats.
- The repeat setting is limited to 10 extra repeats.
- The finished export can’t be longer than 20 minutes.
- If you set a final length, it can’t exceed 1200 seconds.
- Low-quality uploads can fail. Videos with unusual codecs, broken timestamps, or corrupted streams may not process cleanly.
## Safety & compliance
You’re responsible for the video you upload and loop, including legality and rights to use it. Don’t upload content that infringes copyrights, violates privacy, or breaks applicable laws. Use this tool only for content you own or are authorized to modify and redistribute.
API quick start
Run video-loop with a single API call.
POST https://api.wiro.ai/v1/Run/wiro/video-loop
{
"inputVideo": "https://your-cdn.com/input.mp4",
"loop": 1,
"duration": "..."
}