@thunderkiller/video-clipper 1.6.0 → 1.7.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 +13 -0
- package/package.json +20 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @thunderkiller/video-clipper
|
|
2
2
|
|
|
3
|
+
[](https://github.com/AmreetKumarkhuntia/video-clipper/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@thunderkiller/video-clipper)
|
|
5
|
+
[](https://github.com/AmreetKumarkhuntia/video-clipper/blob/master/LICENSE)
|
|
6
|
+
|
|
3
7
|
A TypeScript CLI (and library) that analyzes a YouTube video with an LLM, finds the most interesting moments, and optionally downloads the video and cuts clips automatically.
|
|
4
8
|
|
|
5
9
|
## How It Works
|
|
@@ -137,6 +141,15 @@ await runPipeline(args);
|
|
|
137
141
|
|
|
138
142
|
All public types and Zod schemas are exported from the package root. See [src/lib.ts](src/lib.ts) for the full surface.
|
|
139
143
|
|
|
144
|
+
## Contributing
|
|
145
|
+
|
|
146
|
+
1. Fork the repository
|
|
147
|
+
2. Create a feature branch (`git checkout -b feat/my-feature`)
|
|
148
|
+
3. Commit with [Conventional Commits](https://www.conventionalcommits.org/) — enforced by commitlint
|
|
149
|
+
4. Push and open a Pull Request
|
|
150
|
+
|
|
151
|
+
Pre-commit hooks run automatically: formatting (Prettier), type-check, and tests. Make sure `yt-dlp` and `ffmpeg` are installed locally.
|
|
152
|
+
|
|
140
153
|
## Documentation
|
|
141
154
|
|
|
142
155
|
| Doc | Description |
|
package/package.json
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thunderkiller/video-clipper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "CLI that analyzes YouTube transcripts with an LLM to find interesting moments and cut clips",
|
|
5
5
|
"license": "ISC",
|
|
6
|
-
"author": "",
|
|
6
|
+
"author": "Amreet Kumar Khuntia",
|
|
7
7
|
"packageManager": "pnpm@10.12.4",
|
|
8
|
+
"engines": {
|
|
9
|
+
"node": ">=18"
|
|
10
|
+
},
|
|
11
|
+
"sideEffects": false,
|
|
12
|
+
"keywords": [
|
|
13
|
+
"youtube",
|
|
14
|
+
"video-clipper",
|
|
15
|
+
"llm",
|
|
16
|
+
"transcript",
|
|
17
|
+
"ffmpeg",
|
|
18
|
+
"clips",
|
|
19
|
+
"ai",
|
|
20
|
+
"segmentation",
|
|
21
|
+
"yt-dlp",
|
|
22
|
+
"vercel-ai-sdk",
|
|
23
|
+
"video",
|
|
24
|
+
"highlights"
|
|
25
|
+
],
|
|
8
26
|
"type": "module",
|
|
9
27
|
"main": "dist/lib.js",
|
|
10
28
|
"module": "dist/lib.js",
|