yt-thumbnails 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +7 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,7 +4,7 @@ YouTube video thumbnail grid generator. Extract frames from YouTube videos and c
4
4
 
5
5
  ## Requirements
6
6
 
7
- - [Bun](https://bun.sh)
7
+ - [Node.js](https://nodejs.org) >= 18 (or [Bun](https://bun.sh))
8
8
  - [ffmpeg](https://ffmpeg.org)
9
9
  - [yt-dlp](https://github.com/yt-dlp/yt-dlp)
10
10
 
@@ -16,24 +16,13 @@ brew install ffmpeg yt-dlp
16
16
  ## Installation
17
17
 
18
18
  ```bash
19
- git clone <repo-url>
20
- cd yt-thumbnails
21
- bun install
19
+ npm install -g yt-thumbnails
22
20
  ```
23
21
 
24
22
  ## Usage
25
23
 
26
- ### Development
27
-
28
24
  ```bash
29
- bun start "<youtube-url>"
30
- ```
31
-
32
- ### Build
33
-
34
- ```bash
35
- bun run build
36
- ./dist/yt-thumbnails "<youtube-url>"
25
+ yt-thumbnails "<youtube-url>"
37
26
  ```
38
27
 
39
28
  ## Options
@@ -75,3 +64,7 @@ Extracts frames at equal time intervals throughout the video.
75
64
  Detects scene changes and extracts frames at transition points. Better for videos with distinct scenes like music videos or trailers.
76
65
 
77
66
  If no scene changes are detected, falls back to uniform mode automatically.
67
+
68
+ ## License
69
+
70
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yt-thumbnails",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "YouTube video thumbnail grid generator - Extract frames and create beautiful grid images from YouTube videos",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -28,7 +28,7 @@
28
28
  "license": "MIT",
29
29
  "repository": {
30
30
  "type": "git",
31
- "url": "https://github.com/ieunsu/yt-thumbnails"
31
+ "url": "git+https://github.com/cbcruk/yt-thumbnails.git"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18"