mlbserver 2022.6.9 → 2022.7.23
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 +4 -1
- package/index.js +801 -427
- package/package.json +1 -1
- package/session.js +1618 -285
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# mlbserver
|
|
2
2
|
|
|
3
|
-
Current version 2022.
|
|
3
|
+
Current version 2022.07.23
|
|
4
4
|
|
|
5
5
|
Credit to https://github.com/tonycpsu/streamglob and https://github.com/mafintosh/hls-decryptor
|
|
6
6
|
|
|
@@ -35,6 +35,8 @@ Advanced command line options:
|
|
|
35
35
|
--account_username (email address, default will use stored credentials or prompt user to enter them)
|
|
36
36
|
--account_password (default will use stored credentials or prompt user to enter them)
|
|
37
37
|
--zip_code (optional, for USA blackout labels, will prompt if not set or stored)
|
|
38
|
+
--fav_teams (optional, comma-separated list of favorite team abbreviations, will prompt if not set or stored)
|
|
39
|
+
--free (optional, highlights free games)
|
|
38
40
|
--multiview_port (port for multiview streaming; defaults to 1 more than primary port, or 10000)
|
|
39
41
|
--multiview_path (where to create the folder for multiview encoded files; defaults to app directory)
|
|
40
42
|
--ffmpeg_path (path to ffmpeg binary to use for multiview encoding; default downloads a binary using ffmpeg-static)
|
|
@@ -43,6 +45,7 @@ Advanced command line options:
|
|
|
43
45
|
--page_username (username to protect pages; default is no protection)
|
|
44
46
|
--page_password (password to protect pages; default is no protection)
|
|
45
47
|
--content_protect (specify the content protection key to include as a URL parameter, if page protection is enabled)
|
|
48
|
+
--gamechanger_delay (specify extra delay for the gamechanger switches in 10 second increments, default is 0)
|
|
46
49
|
```
|
|
47
50
|
|
|
48
51
|
For multiview, the default software encoder is limited by your CPU. You may want to experiment with different ffmpeg hardware encoders. "h264_videotoolbox" is confirmed to work on supported Macs, and "h264_v4l2m2m" is confirmed to work on a Raspberry Pi 4 (and likely other Linux systems) when ffmpeg is compiled with this patch: https://www.raspberrypi.org/forums/viewtopic.php?p=1780625#p1780625
|