01
Accept clip URLs
Send remote MP4 links in one request and let the compiler prepare them for a single vertical export.
Video Compiler
Remote clips in. One final hosted video out.
API for automated video assembly
Submit URLs, let FFmpeg handle the assembly, score the output with Free To Use music, upload to Cloudinary, and return one URL that can move straight into your next automation step.
Paste remote clip URLs and send the request directly from the page.
The service stays intentionally narrow so it fits cleanly inside a backend job, an n8n flow, or a lightweight API-first product.
01
Send remote MP4 links in one request and let the compiler prepare them for a single vertical export.
02
A Free To Use track is selected from your tags and trimmed to match the final video duration.
03
The finished render is uploaded to Cloudinary and the API gives back one final URL for the next step in your workflow.
Keep the payload small and predictable. The endpoint expects a list of remote video URLs plus optional music tags.
Input
{
"videos": [
"https://example.com/clip-1.mp4",
"https://example.com/clip-2.mp4",
"https://example.com/clip-3.mp4"
],
"musicTags": ["cinematic", "chill"]
}Response
{
"url": "https://res.cloudinary.com/..."
}