vidpipe 1.3.3 → 1.3.5
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 +4 -0
- package/dist/cli.js +12866 -0
- package/dist/cli.js.map +1 -0
- package/dist/public/index.html +92 -4
- package/package.json +19 -8
- package/dist/index.js +0 -9006
- package/dist/index.js.map +0 -1
- /package/dist/{index.d.ts → cli.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -89,6 +89,9 @@ vidpipe /path/to/video.mp4
|
|
|
89
89
|
# Watch a folder for new recordings
|
|
90
90
|
vidpipe --watch-dir ~/Videos/Recordings
|
|
91
91
|
|
|
92
|
+
# Generate a saved idea bank for future recordings
|
|
93
|
+
vidpipe ideate --topics "GitHub Copilot, Azure, TypeScript" --count 4
|
|
94
|
+
|
|
92
95
|
# Full example with options
|
|
93
96
|
vidpipe \
|
|
94
97
|
--watch-dir ~/Videos/Recordings \
|
|
@@ -115,6 +118,7 @@ vidpipe [options] [video-path]
|
|
|
115
118
|
vidpipe init # Interactive setup wizard
|
|
116
119
|
vidpipe review # Open post review web app
|
|
117
120
|
vidpipe schedule # View posting schedule
|
|
121
|
+
vidpipe ideate # Generate or list saved content ideas
|
|
118
122
|
```
|
|
119
123
|
|
|
120
124
|
| Option | Description |
|