# Video Merger Video Merger joins multiple clips into one continuous video in a single call, stitching footage together in your chosen order and resolution. ## API Information - **Model Slug:** video-merger - **Branded URL:** https://www.eachlabs.ai/eachlabs/video-api/video-merger - **Provider:** each::labs - **Category:** Video to Video - **Output Type:** video - **Status:** active - **Base Cost:** Execution-time pricing: approximately $0.00185/sec based on run_time - **Estimated Processing Time:** 100 seconds - **Interactive Demo:** https://www.eachlabs.ai/ai-models/video-merger ## Pricing - **Charge Type:** dynamic - **Pricing Details:** Execution-time pricing: approximately $0.00185/sec based on run_time ### Pricing Rules | Condition | Pricing | | --- | --- | | Rule 1 | Execution-time pricing: approximately $0.00185/sec based on run_time | ## Input Schema | Parameter | Type | Required | Default | Constraints | Description | |-----------|------|----------|---------|-------------|-------------| | first_clip | string | Yes | - | - | URL of the first source video clip to merge. | | second_clip | string | Yes | - | - | URL of the second source video clip to merge. | | width | integer | Yes | - | - | Output video width in pixels. | | height | integer | Yes | - | - | Output video height in pixels. | ## Example Request ```bash curl -X POST https://api.eachlabs.ai/v1/prediction/ \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "video-merger", "input": { "first_clip": "https://cdn-us.eachlabs.ai/defaults/d77661b5845c4189bf0fb394c58cde75.mp4", "height": 720, "second_clip": "https://cdn-us.eachlabs.ai/defaults/b3d7970964e24ace8ad2c5f397387979.mp4", "width": 1280 } }' ``` ## Output Schema Response returned by `GET /v1/prediction/{id}` when the job completes: ```json { "status": "success", "predictionID": "string", "output": "string (URL of generated video)", "metrics": { "predict_time": "number (seconds)" } } ``` ## Polling ```bash curl https://api.eachlabs.ai/v1/prediction/{PREDICTION_ID} \ -H "Authorization: Bearer YOUR_API_KEY" ``` | Status | Meaning | |--------|---------| | `processing` | Still running — poll again | | `success` | Done — read `output` | | `error` | Failed — read `message` / `details` | ## Webhook (alternative to polling) Pass `"webhook_url": "https://your.host/path"` in the create request. Eachlabs POSTs this payload when the job ends: ```json { "exec_id": "prediction-uuid", "status": "succeeded", "output": "https://...", "error": "" } ``` `status` is `"succeeded"` or `"failed"`. `exec_id` equals the `predictionID` from create. Return 2xx within 30 seconds. ## Errors Error body: `{ "status": "error", "message": "...", "details": "..." }` | Code | Meaning | |------|---------| | `400` | Invalid input | | `401` | Missing / invalid `Authorization` bearer token | | `404` | Unknown model or prediction id | | `429` | Rate limit — 100 creates / min, 10 concurrent per key | | `5xx` | Retry with backoff | ## Usage Notes - API Base URL: `https://api.eachlabs.ai/v1` - Authentication: send `Authorization: Bearer YOUR_API_KEY`. Generate a key from the Eachlabs dashboard at https://www.eachlabs.ai/dashboard/api-keys. - File-typed parameters (`*_url`, `image_url`, `video_url`, `audio_url`, etc.) accept publicly-reachable HTTPS URLs only. Upload your asset first (GCS / S3 / your CDN) and pass the resulting URL. Data-URIs and localhost URLs are rejected. - For structured parameters (arrays / objects) send real JSON values, not stringified payloads. - Monetary values are reported in USD; per-token / per-megapixel rates may be billed in micro-cents internally. - Prefer `webhook_url` over polling for long-running predictions — see the Webhook Callback section.