WaveSpeedAI Watermark Remover
by @chengzeyi
Remove watermarks, logos, captions, and text overlays from images and videos using WaveSpeed AI. Intelligently detects and removes watermarks while preservin...
import wavespeed from 'wavespeed';const imageUrl = await wavespeed.upload("/path/to/watermarked-photo.png");
const output_url = (await wavespeed.run(
"wavespeed-ai/image-watermark-remover",
{
image: imageUrl,
output_format: "png"
}
))["outputs"][0];
Video Watermark Remover
Model ID: wavespeed-ai/video-watermark-remover
Remove watermarks, logos, captions, and text overlays from a video. Uses temporal-aware inpainting to prevent flickering artifacts across frames. Supports videos up to 10 minutes.
#### Parameters
| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| video | string | Yes | -- | URL of the video to process. Must be publicly accessible. Max 10 minutes. |
#### Example
import wavespeed from 'wavespeed';const videoUrl = await wavespeed.upload("/path/to/watermarked-video.mp4");
const output_url = (await wavespeed.run(
"wavespeed-ai/video-watermark-remover",
{ video: videoUrl }
))["outputs"][0];
clawhub install wavespeed-watermark-remover