Loading...
Loading...
Edit, transform, extend, upscale, and enhance videos using EachLabs AI models. Supports lip sync, video translation, subtitle generation, audio merging, style transfer, and video extension. Use when the user wants to edit or transform existing video content.
npx skill4agent add eachlabs/skills eachlabs-video-editHeader: X-API-Key: <your-api-key>EACHLABS_API_KEY| Model | Slug | Best For |
|---|---|---|
| Veo 3.1 Extend | | Best quality extension |
| Veo 3.1 Fast Extend | | Fast extension |
| PixVerse v5 Extend | | PixVerse extension |
| PixVerse v4.5 Extend | | Older PixVerse extension |
| Model | Slug | Best For |
|---|---|---|
| Sync Lipsync v2 Pro | | Best lip sync quality |
| PixVerse Lip Sync | | PixVerse lip sync |
| LatentSync | | Open-source lip sync |
| Video Retalking | | Audio-based lip sync |
| Model | Slug | Best For |
|---|---|---|
| Runway Gen4 Aleph | | Video transformation |
| Kling O1 Video Edit | | AI video editing |
| Kling O1 V2V Reference | | Reference-based edit |
| ByteDance Video Stylize | | Style transfer |
| Wan v2.2 Animate Move | | Motion animation |
| Wan v2.2 Animate Replace | | Object replacement |
| Model | Slug | Best For |
|---|---|---|
| Topaz Upscale Video | | Best quality upscale |
| Luma Ray 2 Video Reframe | | Video reframing |
| Luma Ray 2 Flash Reframe | | Fast reframing |
| Model | Slug | Best For |
|---|---|---|
| FFmpeg Merge Audio Video | | Merge audio track |
| MMAudio V2 | | Add audio to video |
| MMAudio | | Add audio to video |
| Auto Subtitle | | Generate subtitles |
| Merge Videos | | Concatenate videos |
| Model | Slug | Best For |
|---|---|---|
| Heygen Video Translate | | Translate video speech |
| Model | Slug | Best For |
|---|---|---|
| Motion Fast | | Fast motion transfer |
| Infinitalk V2V | | Talking head from video |
| Model | Slug | Best For |
|---|---|---|
| Faceswap Video | | Swap face in video |
GET https://api.eachlabs.ai/v1/model?slug=<slug>request_schemahttps://api.eachlabs.ai/v1/prediction"0.0.1"GET https://api.eachlabs.ai/v1/prediction/{id}"success""failed"curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "veo3-1-extend-video",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/video.mp4",
"prompt": "Continue the scene with the camera slowly pulling back"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "sync-lipsync-v2-pro",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/talking-head.mp4",
"audio_url": "https://example.com/new-audio.mp3"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "auto-subtitle",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/video.mp4"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "ffmpeg-api-merge-audio-video",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/video.mp4",
"audio_url": "https://example.com/music.mp3",
"start_offset": 0
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "topaz-upscale-video",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/low-res-video.mp4"
}
}'