jukebox-media-server 0.1.0 → 0.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/README.md +17 -0
- package/bin/jukebox-media-server.js +2 -1
- package/dist/client/assets/{Watch-C2gUX-4m.js → Watch-kJkUCvFd.js} +31 -31
- package/dist/client/assets/index-1v1BzSVv.js +56 -0
- package/dist/client/assets/index-FPcl2l8F.css +1 -0
- package/dist/client/assets/workbox-window.prod.es5-BIl4cyR9.js +2 -0
- package/dist/client/index.html +24 -4
- package/dist/client/{images/site.webmanifest → manifest.webmanifest} +9 -6
- package/dist/client/offline.html +107 -0
- package/dist/client/sw.js +1 -0
- package/dist/client/workbox-d3da0cfa.js +1 -0
- package/dist/server/index.js +1258 -39
- package/drizzle/0001_steady_puma.sql +65 -65
- package/drizzle/0002_sloppy_betty_ross.sql +8 -8
- package/drizzle/0003_public_speedball.sql +42 -0
- package/drizzle/0004_motionless_bug.sql +13 -0
- package/drizzle/meta/0002_snapshot.json +591 -591
- package/drizzle/meta/0003_snapshot.json +804 -0
- package/drizzle/meta/0004_snapshot.json +880 -0
- package/drizzle/meta/_journal.json +41 -27
- package/package.json +32 -2
- package/dist/client/assets/index-D_um8N7Q.js +0 -52
- package/dist/client/assets/index-DfXUcX5G.css +0 -1
package/README.md
CHANGED
|
@@ -83,6 +83,23 @@ Environment variables:
|
|
|
83
83
|
| -------- | ----------- | ------- |
|
|
84
84
|
| `PORT` | Server port | `1990` |
|
|
85
85
|
|
|
86
|
+
## Casting
|
|
87
|
+
|
|
88
|
+
Jukebox supports **Chromecast** (Chrome) and **AirPlay** (Safari/iOS) from
|
|
89
|
+
the video player control bar.
|
|
90
|
+
|
|
91
|
+
- **Chromecast**: your Chromecast must be on the same local network as the
|
|
92
|
+
machine running Jukebox, and the Jukebox server must be reachable from the
|
|
93
|
+
Chromecast by its IP/hostname (not `localhost`). Cast sessions load the
|
|
94
|
+
media directly from the Jukebox stream URL, so the Chromecast needs LAN
|
|
95
|
+
access to the server.
|
|
96
|
+
- **AirPlay**: works natively on Safari and iOS. `.mkv` files are not
|
|
97
|
+
supported by AirPlay, so Jukebox transcodes them on the fly to HLS
|
|
98
|
+
(requires `ffmpeg` on the server's `PATH`).
|
|
99
|
+
|
|
100
|
+
If casting fails with "Chromecast couldn't reach Jukebox", check that the
|
|
101
|
+
Chromecast can reach the server's IP on the port Jukebox is listening on.
|
|
102
|
+
|
|
86
103
|
## Supported Formats
|
|
87
104
|
|
|
88
105
|
`.mp4`, `.mkv`, `.avi`, `.mov`, `.wmv`, `.m4v`, `.webm`, `.flv`, `.mpeg`,
|