@shaztech/video-pipeline 1.3.0 → 1.4.0
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 +3 -1
- package/dist/editor/assets/{index-yrb6jZba.js → index-DK9i7gno.js} +13 -13
- package/dist/editor/index.html +1 -1
- package/package.json +1 -1
- package/src/executor/nodeHandlers/imageAnnotate.js +9 -0
- package/src/executor/nodeHandlers/video-stitcher.js +4 -0
- package/src/server/routes.js +35 -15
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ The editor lets you:
|
|
|
57
57
|
- Set a glob filter on Input Folder nodes (e.g. `*.mp4`; blank = all files)
|
|
58
58
|
- Drag inputs to reorder them within a Stitcher node
|
|
59
59
|
- Set per-image duration overrides (✎ pencil icon on image inputs)
|
|
60
|
-
- Burn a sequence number label (e.g. `scene 3/10`) into fixed image inputs via the **#** button on an image row, or into the whole output video via the **#** button in the *Output video sequence label* section — configure prefix, font, size, colour, background box, padding, position (9 presets + custom X/Y), total offset, and a start delay (whole-video only). Per-image and whole-video labels can be combined.
|
|
60
|
+
- Burn a sequence number label (e.g. `scene 3/10`) into fixed image inputs via the **#** button on an image row, or into the whole output video via the **#** button in the *Output video sequence label* section — configure prefix, font, size, colour, stroke colour and width, background box, padding, position (9 presets + custom X/Y), total offset, and a start delay (whole-video only). Per-image and whole-video labels can be combined.
|
|
61
61
|
- Delete nodes with the **×** button that appears on hover
|
|
62
62
|
- Save with **⌘S** (macOS) / **Ctrl+S** (Windows/Linux) or the Save button
|
|
63
63
|
|
|
@@ -212,6 +212,8 @@ Burns text like `scene 3/10` into a configurable corner of a media file using FF
|
|
|
212
212
|
| `fontFile` | `string` | — | Path to a `.ttf`/`.otf`/`.ttc` font file (required) |
|
|
213
213
|
| `fontSize` | `number` | `48` | Font size in pixels |
|
|
214
214
|
| `fontColor` | `string` | `"white"` | FFmpeg colour string, e.g. `"white"`, `"yellow"` |
|
|
215
|
+
| `borderColor` | `string` | — | Colour of the text stroke/outline, e.g. `"black"` (only when `borderWidth` > 0) |
|
|
216
|
+
| `borderWidth` | `number` | — | Width of the text stroke in pixels. Omit or set to `0` to disable. |
|
|
215
217
|
| `box` | `boolean` | `false` | Draw a semi-transparent background box behind the text |
|
|
216
218
|
| `boxColor` | `string` | `"black@0.5"` | FFmpeg colour string for the box (only when `box` is `true`) |
|
|
217
219
|
| `padding` | `number` | `20` | Distance from the nearest edges in pixels (used by all presets) |
|