@pilio/gemini-watermark-remover 1.0.37 → 1.0.39
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 +15 -4
- package/dist/video-app.js +17 -17
- package/package.json +1 -1
- package/src/cli/gwrCli.js +1 -1
- package/src/cli/gwrRemoveCommand.js +52 -4
- package/src/sdk/node.d.ts +1 -0
- package/src/sdk/video.d.ts +23 -8
- package/src/sdk/video.js +19 -17
- package/src/sdk/videoProgress.js +108 -0
package/README.md
CHANGED
|
@@ -137,10 +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
|
-
|
|
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:
|
|
144
155
|
|
|
145
156
|
```bash
|
|
146
157
|
pnpm dlx @pilio/gemini-watermark-remover remove <input> --output <file>
|