@pictx/gemini-veo-watermark-remover 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +18 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  [中文文档](README_zh.md)
2
2
 
3
- > 🔥 Tired of Gemini and Veo watermarks? Try the more powerful **GPT Image 2** at [pictx.ai](https://pictx.ai) — free for a limited time.
4
-
5
3
  # Gemini & Veo Watermark Remover — Lossless AI Watermark Removal Tool
6
4
 
7
5
  An open-source tool to **remove Gemini image watermarks and Veo video watermarks** from supported AI-generated outputs with high-fidelity, reproducible results. Built with pure JavaScript, the engine uses a mathematically exact **Reverse Alpha Blending** algorithm instead of unpredictable AI inpainting.
@@ -51,10 +49,28 @@ For Veo videos from the browser, use the online tool or `npx pictx remove video.
51
49
 
52
50
  ## Watermark Removal Examples
53
51
 
52
+ ### Images
53
+
54
54
  | Original Image | Watermark Removed |
55
55
  | --- | --- |
56
56
  | ![Before](https://removegeminiwatermark.io/images/demo-before.webp) | ![After](https://removegeminiwatermark.io/images/demo-after.webp) |
57
57
 
58
+ ### Videos
59
+
60
+ Gemini 3.5+ diamond logo (1920×1080, default profile):
61
+
62
+ | Before | After |
63
+ | --- | --- |
64
+ | <video src="docs/demo/video-diamond-1080-before.mp4" controls playsinline width="480"></video> | <video src="docs/demo/video-diamond-1080-after.mp4" controls playsinline width="480"></video> |
65
+
66
+ Legacy `"Veo"` text watermark (1280×720, `--legacy`):
67
+
68
+ | Before | After |
69
+ | --- | --- |
70
+ | <video src="docs/demo/video-legacy-720-before.mp4" controls playsinline width="320"></video> | <video src="docs/demo/video-legacy-720-after.mp4" controls playsinline width="320"></video> |
71
+
72
+ Full-resolution samples and local regeneration steps live under `tests/fixtures/videos/` (see [tests/fixtures/README.md](tests/fixtures/README.md)). For browser-based processing without installing ffmpeg, use [removegeminiwatermark.io](https://removegeminiwatermark.io).
73
+
58
74
  ## What's New
59
75
 
60
76
  The video engine has been updated to follow [VeoWatermarkRemover v0.5.0-demo](https://github.com/allenk/VeoWatermarkRemover/releases/tag/v0.5.0-demo). Gemini 3.5+ video outputs now use the Gemini diamond logo instead of the old "Veo" text overlay, so `pictx remove video.mp4` targets the diamond profile by default.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pictx/gemini-veo-watermark-remover",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },