← All skills
Tencent SkillHub Β· AI

Eachlabs Video Edit

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.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Known item issue.

This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.

Quick setup
  1. Open the source page and confirm the package flow manually.
  2. Review SKILL.md if you can obtain the files.
  3. Treat this source as manual setup until the download is verified.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/MODELS.md

Validation

  • Open the source listing and confirm there is a real package or setup artifact available.
  • Review SKILL.md before asking your agent to continue.
  • Treat this source as manual setup until the upstream download flow is fixed.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item currently does not return a direct package file.

  1. Open the source page via Open source listing.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 17 sections Open source page

EachLabs Video Edit

Edit, transform, and enhance existing videos using 25+ AI models via the EachLabs Predictions API.

Authentication

Header: X-API-Key: <your-api-key> Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai.

Video Extension

ModelSlugBest ForVeo 3.1 Extendveo3-1-extend-videoBest quality extensionVeo 3.1 Fast Extendveo3-1-fast-extend-videoFast extensionPixVerse v5 Extendpixverse-v5-extendPixVerse extensionPixVerse v4.5 Extendpixverse-v4-5-extendOlder PixVerse extension

Lip Sync & Talking Head

ModelSlugBest ForSync Lipsync v2 Prosync-lipsync-v2-proBest lip sync qualityPixVerse Lip Syncpixverse-lip-syncPixVerse lip syncLatentSynclatentsyncOpen-source lip syncVideo Retalkingvideo-retalkingAudio-based lip sync

Video Transformation

ModelSlugBest ForRunway Gen4 Alephrunway-gen4-alephVideo transformationKling O1 Video Editkling-o1-video-to-video-editAI video editingKling O1 V2V Referencekling-o1-video-to-video-referenceReference-based editByteDance Video Stylizebytedance-video-stylizeStyle transferWan v2.2 Animate Movewan-v2-2-14b-animate-moveMotion animationWan v2.2 Animate Replacewan-v2-2-14b-animate-replaceObject replacement

Video Upscaling & Enhancement

ModelSlugBest ForTopaz Upscale Videotopaz-upscale-videoBest quality upscaleLuma Ray 2 Video Reframeluma-dream-machine-ray-2-video-reframeVideo reframingLuma Ray 2 Flash Reframeluma-dream-machine-ray-2-flash-video-reframeFast reframing

Audio & Subtitles

ModelSlugBest ForFFmpeg Merge Audio Videoffmpeg-api-merge-audio-videoMerge audio trackMMAudio V2mm-audio-v-2Add audio to videoMMAudiommaudioAdd audio to videoAuto Subtitleauto-subtitleGenerate subtitlesMerge Videosmerge-videosConcatenate videos

Video Translation

ModelSlugBest ForHeygen Video Translateheygen-video-translateTranslate video speech

Motion Transfer

ModelSlugBest ForMotion Fastmotion-fastFast motion transferInfinitalk V2Vinfinitalk-video-to-videoTalking head from video

Face Swap (Video)

ModelSlugBest ForFaceswap Videofaceswap-videoSwap face in video

Prediction Flow

Check model GET https://api.eachlabs.ai/v1/model?slug=<slug> β€” validates the model exists and returns the request_schema with exact input parameters. Always do this before creating a prediction to ensure correct inputs. POST https://api.eachlabs.ai/v1/prediction with model slug, version "0.0.1", and input matching the schema Poll GET https://api.eachlabs.ai/v1/prediction/{id} until status is "success" or "failed" Extract the output video URL from the response

Extend a Video with Veo 3.1

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" } }'

Lip Sync with Sync v2 Pro

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" } }'

Add Subtitles

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" } }'

Merge Audio with Video

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 } }'

Upscale Video with Topaz

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" } }'

Parameter Reference

See references/MODELS.md for complete parameter details for each model.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • references/MODELS.md Docs