Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

video-watermark视频水印

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

4,051

周安装

174

GitHub Stars

12

下载量

1,420
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:video-watermark(视频水印)
来源仓库:https://github.com/eachlabs/skills
仓库路径:skills/video-watermark
安装命令:
npx skills add https://github.com/eachlabs/skills --skill video-watermark
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/eachlabs/skills --skill video-watermark

简介

用于视频项目开发中的水印处理与合成。video-watermark 属于待分类类 Skill,可作为该场景下的辅助能力补充。

  • 适合组织镜头、生成素材说明或维护合成代码。
  • 使用时需确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材或商业发布时应核对版权授权和内容审核要求。
  • 安装方式:通过 GitHub 仓库添加,支持 Codex、Claude 等宿主环境。

SKILL.md

Video Watermark

Add professional watermarks to your videos or remove unwanted watermarks using each::sense. This skill handles all watermarking needs including logo placement, text overlays, animated watermarks, and intelligent watermark removal.

Features

  • Add Logo Watermark: Place your brand logo on videos with customizable opacity and position
  • Add Text Watermark: Add text overlays with custom fonts, colors, and styles
  • Transparent Watermark: Semi-transparent watermarks that don't obstruct content
  • Position Control: Place watermarks in corners, center, or custom positions
  • Animated Watermark: Moving or pulsing watermarks for enhanced branding
  • Dynamic Watermark: Watermarks that change position throughout the video
  • Remove Watermark: Intelligently remove existing watermarks from videos
  • TikTok Watermark Removal: Remove TikTok logos and usernames from videos
  • Stock Footage Cleanup: Remove stock footage watermarks for licensed content
  • Batch Processing: Apply watermarks to multiple videos efficiently

Quick Start

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a logo watermark to this video in the bottom right corner with 50% opacity"}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/my-video.mp4", "https://example.com/my-logo.png"]
  }'

Watermark Position Reference

PositionDescriptionBest Use Case
Bottom RightMost common placementCorporate videos, vlogs
Bottom LeftAlternative cornerWhen bottom right has content
Top RightUpper cornerNews-style, live streams
Top LeftUpper cornerDocumentary style
CenterMiddle of framePreview/draft watermarks
Full FrameDiagonal across videoStock footage protection

Use Case Examples

1. Add Logo Watermark

Add your brand logo to a video with customizable placement and opacity.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add this logo as a watermark to the video. Place it in the bottom right corner with 40% opacity. Keep the logo small, about 10% of the video width."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/product-video.mp4", "https://example.com/company-logo.png"]
  }'

2. Add Text Watermark

Add text-based watermarks like copyright notices or channel names.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a text watermark to this video saying \"Copyright 2024 MyBrand\" in white text with black outline. Position it in the bottom left corner, make it subtle but readable."}],

    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/my-video.mp4"]
  }'

3. Add Transparent Watermark

Create subtle, semi-transparent watermarks that protect content without being intrusive.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a very subtle transparent watermark with my logo. Use only 20% opacity so it is barely visible but still present. Position in the bottom right corner."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/cinematic-video.mp4", "https://example.com/watermark-logo.png"]
  }'

4. Position Watermark (Corner and Center)

Precisely control watermark placement for different video styles.

# Corner placement for vlog style
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add my channel logo in the top left corner of this video. Make it small and semi-transparent. The watermark should have a slight drop shadow for visibility on light backgrounds."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/vlog-video.mp4", "https://example.com/channel-logo.png"]
  }'

# Center placement for preview/draft
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a large DRAFT watermark text diagonally across the center of this video. Use white text with black stroke, 50% opacity. This is for preview purposes."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/preview-video.mp4"]
  }'

5. Animated Watermark

Add dynamic, animated watermarks that draw attention or add visual interest.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add an animated watermark to this video. The logo should have a subtle pulsing glow effect. Place it in the bottom right corner. The animation should loop smoothly every 2 seconds."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/promo-video.mp4", "https://example.com/animated-logo.gif"]
  }'

6. Remove Watermark from Video

Intelligently remove existing watermarks while preserving video quality.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Remove the watermark from this video. There is a logo watermark in the bottom right corner that needs to be removed cleanly without affecting the rest of the video."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/watermarked-video.mp4"]
  }'

7. Remove TikTok Watermark

Remove TikTok logos and username watermarks from downloaded videos.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Remove the TikTok watermark from this video. There is a TikTok logo and username in the corner that needs to be removed. Preserve the original video quality and ensure no artifacts remain."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/tiktok-video.mp4"]
  }'

8. Remove Stock Footage Watermark

Remove watermarks from stock footage that you have licensed.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Remove the stock footage watermark from this video. It has a repeating diagonal text watermark across the entire frame saying the stock site name. I have licensed this footage and need a clean version."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/stock-footage-preview.mp4"]
  }'

9. Add Dynamic Watermark (Changes Position)

Add watermarks that move or change position throughout the video to prevent easy removal.

curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add a dynamic watermark to this video that changes position every 5 seconds. The watermark should move between all four corners of the video. Use my logo with 30% opacity. This makes the watermark harder to remove."}],
    "model": "eachsense/beta",
    "stream": true,
    "mode": "max",
    "image_urls": ["https://example.com/protected-content.mp4", "https://example.com/brand-logo.png"]
  }'

10. Batch Watermark Multiple Videos

Apply consistent watermarks across multiple videos in a session.

# First video in batch
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "I need to add the same watermark to multiple videos. Start with this first video. Add my logo in the bottom right corner with 35% opacity. Remember these settings for the next videos."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "batch-watermark-001",
    "mode": "eco",
    "image_urls": ["https://example.com/video-1.mp4", "https://example.com/company-logo.png"]
  }'

# Second video (same session for consistency)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply the same watermark settings to this second video."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "batch-watermark-001",
    "mode": "eco",
    "image_urls": ["https://example.com/video-2.mp4"]
  }'

# Third video (same session)
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Apply the same watermark settings to this third video."}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "batch-watermark-001",
    "mode": "eco",
    "image_urls": ["https://example.com/video-3.mp4"]
  }'

Best Practices

Adding Watermarks

  • Opacity: Use 20-40% opacity for subtle branding, 50-70% for visible protection
  • Size: Keep logo watermarks at 5-15% of video width for professional look
  • Position: Bottom corners are standard; avoid center unless for drafts/previews
  • Contrast: Add shadow or outline to watermarks for visibility on varied backgrounds
  • Consistency: Use the same watermark settings across all your content

Removing Watermarks

  • Quality: Higher quality source videos yield better removal results
  • Simple backgrounds: Watermarks over simple/uniform areas are easier to remove
  • Multiple watermarks: Specify all watermark locations for comprehensive removal
  • Legal use: Only remove watermarks from content you own or have licensed

Mode Selection

Ask your users before generating:

"Do you want fast & cheap, or high quality?"

ModeBest ForSpeedQuality
maxFinal output, professional content, watermark removalSlowerHighest
ecoBatch processing, drafts, testing placementFasterGood

Multi-Turn Watermark Iteration

Use session_id to refine watermark placement:

# Initial watermark
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Add my logo watermark to this video in the bottom right corner"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "watermark-project-001",
    "image_urls": ["https://example.com/my-video.mp4", "https://example.com/logo.png"]
  }'

# Adjust based on feedback
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "The watermark is too large and too opaque. Make it 50% smaller and reduce opacity to 25%"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "watermark-project-001"
  }'

# Final adjustment
curl -X POST https://eachsense-agent.core.eachlabs.run/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -H "Accept: text/event-stream" \
  -d '{
    "messages": [{"role": "user", "content": "Move it slightly more to the center to avoid the video controls overlay area"}],
    "model": "eachsense/beta",
    "stream": true,
    "session_id": "watermark-project-001"
  }'

Error Handling

ErrorCauseSolution
Failed to create prediction: HTTP 422Insufficient balanceTop up at eachlabs.ai
Content policy violationProhibited contentEnsure content complies with terms of service
TimeoutLong video processingSet client timeout to minimum 10 minutes
Invalid video formatUnsupported formatConvert to MP4, MOV, or WebM
Watermark not detectedAI cannot locate watermarkSpecify watermark location more precisely

Related Skills

  • each-sense - Core API documentation
  • video-generation - Create videos from scratch
  • video-edit - General video editing capabilities
  • image-edit - Image watermarking and editing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.15%
按下载量换算513

Claude

29.83%
按下载量换算424

Cursor

18.46%
按下载量换算262

Gemini CLI

9.18%
按下载量换算130

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills