jukebox-media-server 0.5.1 → 0.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.
Files changed (32) hide show
  1. package/README.md +18 -20
  2. package/dist/client/assets/{Watch-Ja4PAA8Y.js → Watch-BiR2iXrC.js} +33 -33
  3. package/dist/client/assets/index-CKZbQJYY.css +1 -0
  4. package/dist/client/assets/index-CoxOmmZz.js +87 -0
  5. package/dist/client/index.html +2 -2
  6. package/dist/client/sw.js +1 -1
  7. package/dist/server/HttpApiBuilder-DWwOvarr.js +42786 -0
  8. package/dist/server/better-sqlite3-CkwhTVXW.js +129 -0
  9. package/dist/server/bun-database-CqinoQgb.js +14 -0
  10. package/dist/server/bun-database-oVoIc-C8.js +15 -0
  11. package/dist/server/bun-sqlite-Bk_yjDLi.js +134 -0
  12. package/dist/server/chunk-CrysgU_F.js +36 -0
  13. package/dist/server/config-CCAveLuN.js +12 -0
  14. package/dist/server/esm-Dm4Gq4cv.js +40975 -0
  15. package/dist/server/index.js +3884 -5603
  16. package/dist/server/{indexes-VMR6QVVl.js → indexes-vPbUiKXP.js} +4 -100
  17. package/dist/server/{better-sqlite3-Dy_YhTFe.js → logger-ygdFSBOU.js} +243 -368
  18. package/dist/server/{migrator-CWPnMvx5.js → migrator-8uumkKvi.js} +1 -7
  19. package/dist/server/migrator-CpDrzLY4.js +8 -0
  20. package/dist/server/migrator-D9F-ETAB.js +8 -0
  21. package/dist/server/schema-1sWMC8cP.js +59 -0
  22. package/dist/server/schema-B7-kIAVY.js +145 -0
  23. package/dist/server/select-62doObBa.js +101 -0
  24. package/drizzle/0011_loose_eternity.sql +1 -0
  25. package/drizzle/meta/0011_snapshot.json +1066 -0
  26. package/drizzle/meta/_journal.json +8 -1
  27. package/drizzle-telemetry/0000_great_thor.sql +45 -0
  28. package/drizzle-telemetry/meta/0000_snapshot.json +320 -0
  29. package/drizzle-telemetry/meta/_journal.json +13 -0
  30. package/package.json +22 -8
  31. package/dist/client/assets/index-AENKhh_8.css +0 -1
  32. package/dist/client/assets/index-Cm9WIhoR.js +0 -58
package/README.md CHANGED
@@ -11,7 +11,7 @@ streaming your personal movie and TV show collection.
11
11
  rich metadata
12
12
  - **Movies and TV shows** — automatic detection of episodes, seasons, and series
13
13
  - **Automatic metadata** — fetches titles, posters, backdrops, ratings, and
14
- trailers from TMDB
14
+ trailers automatically. No API key required.
15
15
  - **Video streaming with seeking** — stream any common video format with full
16
16
  range-request support
17
17
  - **Watch progress** — automatically saves and resumes playback position
@@ -21,8 +21,9 @@ streaming your personal movie and TV show collection.
21
21
 
22
22
  ## Requirements
23
23
 
24
- - [Node.js](https://nodejs.org/) 18 or later
25
- - A free [TMDB API key](https://www.themoviedb.org/settings/api)
24
+ - [Node.js](https://nodejs.org/) 18 or later (or [Bun](https://bun.sh/))
25
+ - [ffmpeg](https://ffmpeg.org/) on your `PATH` (used for media probing and
26
+ on-the-fly transcoding)
26
27
 
27
28
  ## Installation
28
29
 
@@ -54,34 +55,30 @@ bunx jukebox-media-server@latest
54
55
 
55
56
  Then open `http://localhost:1990` in your browser.
56
57
 
57
- 2. **Add your TMDB API key**
58
+ 2. **Add your library**
58
59
 
59
- On first launch, the setup screen will ask for your TMDB API key. You can
60
- create one for free at
61
- [themoviedb.org](https://www.themoviedb.org/settings/api).
60
+ On first launch, the setup screen asks you to point Jukebox at the folders
61
+ containing your movies and TV shows. It will recursively scan for video
62
+ files, parse titles and years from filenames, and fetch metadata
63
+ automatically — no API key needed.
62
64
 
63
- 3. **Scan your library**
64
-
65
- Point Jukebox at the folder containing your movies and TV shows. It will
66
- recursively scan for video files, parse titles and years from filenames, and
67
- fetch metadata from TMDB.
68
-
69
- 4. **Watch**
65
+ 3. **Watch**
70
66
 
71
67
  That's it — your library is ready.
72
68
 
73
69
  ## Configuration
74
70
 
75
- Jukebox stores its configuration and database in `~/.jukebox/`:
71
+ Jukebox stores its data in `~/.jukebox/`:
76
72
 
77
- - `~/.jukebox/config.json` — your TMDB API key and library paths
78
- - `~/.jukebox/jukebox.db` — SQLite database with metadata and watch progress
73
+ - `~/.jukebox/jukebox.db` — SQLite database with library paths, metadata, and
74
+ watch progress
79
75
 
80
76
  Environment variables:
81
77
 
82
- | Variable | Description | Default |
83
- | -------- | ----------- | ------- |
84
- | `PORT` | Server port | `1990` |
78
+ | Variable | Description | Default |
79
+ | -------------------------- | -------------------------------------- | ------------------------------------------------ |
80
+ | `PORT` | Server port | `1990` |
81
+ | `JUKEBOX_METADATA_API_URL` | Override the metadata service endpoint | `https://movie-data-api.artgaard.workers.dev` |
85
82
 
86
83
  ## Casting
87
84
 
@@ -133,3 +130,4 @@ Bug reports, feature requests, and pull requests are welcome. See
133
130
  ## License
134
131
 
135
132
  [MIT](LICENSE)
133
+