Install
openclaw skills install @wavespeed/wavespeed-watermark-removerRemove watermarks, logos, captions, and text overlays from images and videos using WaveSpeed AI. Intelligently detects and removes watermarks while preserving texture and background. Supports images and videos up to 10 minutes. Only for media the user owns or is licensed to modify (e.g. cleaning their own exports, stock they have purchased, or overlays they added themselves); never to strip another party's copyright or attribution marks. Use when the user wants to remove watermarks or text overlays from their own media.
openclaw skills install @wavespeed/wavespeed-watermark-removerRemove watermarks, logos, captions, and text overlays from images and videos using WaveSpeed AI. Intelligently detects and removes watermarks while preserving texture and background.
Read Responsible use before running anything. This tool is for media the user owns or is licensed to modify, not for stripping other people's copyright or attribution marks.
Install the open-source CLI once and sign in; the CLI stores the key, so never ask the user to paste an API key into the chat:
npm install -g @wavespeed/cli
wavespeed login # opens https://wavespeed.ai/accesskey and stores the key
wavespeed status # confirms you are signed in
For CI or one-off shells, WAVESPEED_API_KEY in the environment also works.
Prefer MCP tools over shell commands? The same platform is exposed by @wavespeed/mcp (npx -y @wavespeed/mcp; tools search_models, get_model_schema, get_price, upload_file, run_model, get_prediction). It shares the CLI's stored login. Every example below maps one-to-one onto run_model with the same model id and input fields.
# Upload a local image to get a URL
OUTPUT_URL=$(wavespeed run wavespeed-ai/image-watermark-remover \
-i image=@./watermarked-image.png \
--json | jq -r '.outputs[0]')
# Upload a local video to get a URL
OUTPUT_URL=$(wavespeed run wavespeed-ai/video-watermark-remover \
-i video=@./watermarked-video.mp4 \
--json | jq -r '.outputs[0]')
Existing URLs work as-is:
OUTPUT_URL=$(wavespeed run wavespeed-ai/image-watermark-remover \
-i image="https://example.com/watermarked-image.jpg" \
--json | jq -r '.outputs[0]')
Model ID: wavespeed-ai/image-watermark-remover
Remove watermarks, logos, and text overlays from an image while preserving texture and background.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
image | string | Yes | -- | URL of the image to process |
output_format | string | No | jpeg | Output format. One of: jpeg, png, webp |
OUTPUT_URL=$(wavespeed run wavespeed-ai/image-watermark-remover \
-i image=@./watermarked-photo.png \
-i output_format="png" \
--json | jq -r '.outputs[0]')
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.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
video | string | Yes | -- | URL of the video to process. Must be publicly accessible. Max 10 minutes. |
OUTPUT_URL=$(wavespeed run wavespeed-ai/video-watermark-remover \
-i video=@./watermarked-video.mp4 \
--json | jq -r '.outputs[0]')
| Operation | Cost |
|---|---|
| Image watermark removal | $0.012 per image |
| Video watermark removal | $0.01 per second (minimum $0.05 / 5 seconds) |
Video watermark removal supports videos up to 10 minutes. Processing time is approximately 5-20 seconds per 1 second of video.
Watermarks and overlays are usually there to assert ownership or attribution. Before calling either endpoint, confirm the following with the user. If the answer is no or unclear, do not run the model and explain why.
WaveSpeed's Terms of Service prohibit using the service to infringe intellectual property; requests that violate them are refused and accounts may be suspended.
# Inspect the live input schema before running (fields, enums, defaults)
wavespeed run wavespeed-ai/image-watermark-remover -h
# Quote the price first
wavespeed price wavespeed-ai/image-watermark-remover -p "..." -i key=value
# Save outputs to disk instead of only printing URLs
wavespeed run wavespeed-ai/image-watermark-remover -p "..." --json --download "./out/{index}.{ext}"
# Local files: prefix the path with @ and the CLI uploads it and passes the hosted URL
wavespeed run wavespeed-ai/image-watermark-remover -i <field>=@./local-file.png --json
# Recover a result if the run was interrupted (the id is in the --json output)
wavespeed show <id>
run --json prints { id, model, prompt, outputs: [url, ...], saved: [path, ...], elapsed_ms, raw }. Read outputs[0] for the result URL.
wavespeed login handles auth; if wavespeed status says signed out, ask the user to run it.@: bare paths are passed through untouched and the model will reject them. Only @-prefixed values upload.wavespeed run <model> -h when unsure.