@thunderkiller/video-clipper 1.1.1 → 1.2.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/CHANGELOG.md +6 -0
- package/README.md +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [1.2.0](https://github.com/AmreetKumarkhuntia/video-clipper/compare/v1.1.1...v1.2.0) (2026-03-19)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **docs:** add advanced examples section to README with common use cases ([6d730f6](https://github.com/AmreetKumarkhuntia/video-clipper/commit/6d730f615830247977273bacb26c9bee24a6e474))
|
|
6
|
+
|
|
1
7
|
## [1.1.1](https://github.com/AmreetKumarkhuntia/video-clipper/compare/v1.1.0...v1.1.1) (2026-03-19)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -92,6 +92,25 @@ OPENAI_API_KEY=your_key_here
|
|
|
92
92
|
# LLM_MODEL=meta-llama/llama-3.3-70b-instruct:free
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
+
## Advanced Examples
|
|
96
|
+
|
|
97
|
+
```bash
|
|
98
|
+
# Analyze only (no download)
|
|
99
|
+
npm run start -- <youtube-url>
|
|
100
|
+
|
|
101
|
+
# Analyze and download full video
|
|
102
|
+
npm run start -- <youtube-url> --download
|
|
103
|
+
|
|
104
|
+
# Analyze and cut clips
|
|
105
|
+
npm run start -- <youtube-url> --clip
|
|
106
|
+
|
|
107
|
+
# Limit number of clips to generate
|
|
108
|
+
npm run start -- <youtube-url> --clip --max-clips 3
|
|
109
|
+
|
|
110
|
+
# Use custom output directory
|
|
111
|
+
OUTPUT_DIR=my-clips npm run start -- <youtube-url> --clip
|
|
112
|
+
```
|
|
113
|
+
|
|
95
114
|
## Configuration
|
|
96
115
|
|
|
97
116
|
All parameters are set via `.env`:
|