@pilio/gemini-watermark-remover 1.0.39 → 1.0.41

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.
package/README.md CHANGED
@@ -137,21 +137,21 @@ For scripting, CI, and local batch workflows, use the direct CLI:
137
137
  node bin/gwr.mjs remove <input> --output <file>
138
138
 
139
139
  # installed globally
140
- gwr remove <input> [--output <file> | --out-dir <dir>] [--overwrite] [--json]
141
- ```
142
-
143
- Video exports default to the repository's calibrated 12 Mbps AVC profile. For a
144
- quality-sensitive source, request a higher encoder target explicitly:
145
-
146
- ```bash
147
- gwr remove input.mp4 --output clean.mp4 --video-bitrate-mbps 20
148
- ```
149
-
150
- The CLI reports video frame progress on stderr. `--video-timeout-ms` is an
151
- inactivity timeout: an export may run longer than that value as long as frames
152
- continue to advance.
153
-
154
- If you do not have `gwr` installed globally, use:
140
+ gwr remove <input> [--output <file> | --out-dir <dir>] [--overwrite] [--json]
141
+ ```
142
+
143
+ Video exports default to the repository's calibrated 12 Mbps AVC profile. For a
144
+ quality-sensitive source, request a higher encoder target explicitly:
145
+
146
+ ```bash
147
+ gwr remove input.mp4 --output clean.mp4 --video-bitrate-mbps 20
148
+ ```
149
+
150
+ The CLI reports video frame progress on stderr. `--video-timeout-ms` is an
151
+ inactivity timeout: an export may run longer than that value as long as frames
152
+ continue to advance.
153
+
154
+ If you do not have `gwr` installed globally, use:
155
155
 
156
156
  ```bash
157
157
  pnpm dlx @pilio/gemini-watermark-remover remove <input> --output <file>
package/dist/video-app.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @pilio/gemini-watermark-remover v1.0.39+2037d25
2
+ * @pilio/gemini-watermark-remover v1.0.41+15e3798
3
3
  * Automatically removes watermarks from Gemini AI generated images
4
4
  * (c) 2026 GargantuaX
5
5
  * https://github.com/GargantuaX/gemini-watermark-remover
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pilio/gemini-watermark-remover",
3
3
  "description": "Automatically removes watermarks from Gemini AI generated images",
4
- "version": "1.0.39",
4
+ "version": "1.0.41",
5
5
  "author": "GargantuaX",
6
6
  "sideEffects": false,
7
7
  "files": [
package/src/cli/gwrCli.js CHANGED
@@ -1,17 +1,17 @@
1
- import { runRemoveCommand } from './gwrRemoveCommand.js';
2
-
3
- export async function main(argv, io) {
4
- if (argv.length === 0 || argv[0] === '--help' || argv[0] === '-h') {
5
- io.stdout.write('Usage: gwr remove <input> [--output <file> | --out-dir <dir>] [--overwrite] [--json] [--video-page <url-or-file>] [--video-timeout-ms <ms>] [--video-bitrate-mbps <Mbps>]\n');
6
- return 0;
7
- }
8
-
9
- const [command, ...rest] = argv;
10
-
11
- if (command !== 'remove') {
12
- io.stderr.write(`Unknown command: ${command}\n`);
13
- return 2;
14
- }
15
-
16
- return runRemoveCommand(rest, io);
17
- }
1
+ import { runRemoveCommand } from './gwrRemoveCommand.js';
2
+
3
+ export async function main(argv, io) {
4
+ if (argv.length === 0 || argv[0] === '--help' || argv[0] === '-h') {
5
+ io.stdout.write('Usage: gwr remove <input> [--output <file> | --out-dir <dir>] [--overwrite] [--json] [--video-page <url-or-file>] [--video-timeout-ms <ms>] [--video-bitrate-mbps <Mbps>]\n');
6
+ return 0;
7
+ }
8
+
9
+ const [command, ...rest] = argv;
10
+
11
+ if (command !== 'remove') {
12
+ io.stderr.write(`Unknown command: ${command}\n`);
13
+ return 2;
14
+ }
15
+
16
+ return runRemoveCommand(rest, io);
17
+ }