├── .gitattributes ├── .gitignore ├── .notes └── hls-spec │ ├── 01. location of embedded URLs.txt │ └── 02. location of embedded URLs.txt ├── .npmignore ├── .profiler ├── 1-node.js │ ├── README.md │ ├── bash │ │ ├── 1-profile-proxy.sh │ │ ├── 2-apply-load.sh │ │ └── 3-run-tick-processor.sh │ └── windows-cmd │ │ ├── 1-profile-proxy.bat │ │ ├── 2-apply-load.bat │ │ └── 3-run-tick-processor.bat └── 2-clinic.js │ ├── README.md │ ├── package-lock.json │ └── package.json ├── .recipes ├── .bin │ ├── play_in_VLC.cmd │ └── start_hlsd.bat ├── .lib │ ├── LAN │ │ ├── get_proxied_url.bat │ │ ├── get_video_player_url.bat │ │ └── print_proxied_url.bat │ └── WAN │ │ ├── get_proxied_url.bat │ │ ├── get_video_player_url.bat │ │ └── print_proxied_url.bat ├── 00. generic use cases │ ├── [http, port 8080] prefetch.bat │ ├── [http, port 8080].bat │ ├── [https, port 8081] prefetch.bat │ ├── [https, port 8081].bat │ ├── configure acl ip whitelist │ │ └── 192.168.1.100 │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ ├── [https, port 8081].bat │ │ │ └── env.bat │ ├── configure acl pass whitelist │ │ └── 1234 │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ ├── [https, port 8081].bat │ │ │ └── env.bat │ ├── configure cache key │ │ ├── [http, port 8080, prefetch] key is URL.bat │ │ ├── [http, port 8080, prefetch] key is filename.bat │ │ ├── [https, port 8081, prefetch] key is URL.bat │ │ └── [https, port 8081, prefetch] key is filename.bat │ ├── configure cache storage │ │ ├── [http, port 8080, prefetch] storage is filesystem.bat │ │ ├── [http, port 8080, prefetch] storage is memory.bat │ │ ├── [https, port 8081, prefetch] storage is filesystem.bat │ │ └── [https, port 8081, prefetch] storage is memory.bat │ ├── configure hooks │ │ ├── phproxy │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ ├── [https, port 8081].bat │ │ │ └── data │ │ │ │ └── hooks.js │ │ ├── request_intervals │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ ├── [https, port 8081].bat │ │ │ └── data │ │ │ │ └── hooks.js │ │ └── url_obfuscation │ │ │ ├── .test │ │ │ └── test.sh │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ ├── [https, port 8081].bat │ │ │ └── data │ │ │ ├── hooks.js │ │ │ └── lib │ │ │ ├── cryptr │ │ │ └── index.js │ │ │ └── info.txt │ ├── configure http proxy │ │ ├── [http, port 8080].bat │ │ ├── print-WAN-IP.bat │ │ └── private.bat-template │ ├── configure log verbosity │ │ ├── v2 │ │ │ ├── [http, port 8080] v2, prefetch.bat │ │ │ ├── [http, port 8080] v2.bat │ │ │ ├── [https, port 8081] v2, prefetch.bat │ │ │ └── [https, port 8081] v2.bat │ │ ├── v3 │ │ │ ├── [http, port 8080] v3, prefetch.bat │ │ │ ├── [http, port 8080] v3.bat │ │ │ ├── [https, port 8081] v3, prefetch.bat │ │ │ └── [https, port 8081] v3.bat │ │ └── v4 │ │ │ ├── [http, port 8080] v4, prefetch.bat │ │ │ ├── [http, port 8080] v4.bat │ │ │ ├── [https, port 8081] v4, prefetch.bat │ │ │ └── [https, port 8081] v4.bat │ ├── configure port mapping │ │ ├── public port [9090], static public host [hls-proxy.my-domain] │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ └── [https, port 8081].bat │ │ └── public port [9090] │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ └── [https, port 8081].bat │ ├── configure tls certificate │ │ ├── [https, port 8081] prefetch.bat │ │ ├── [https, port 8081].bat │ │ └── cert │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ └── pass.phrase │ ├── configure tls ciphers │ │ └── AES128-SHA │ │ │ ├── [http, port 8080] AES128-SHA, prefetch.bat │ │ │ ├── [http, port 8080] AES128-SHA.bat │ │ │ ├── [https, port 8081] AES128-SHA, prefetch.bat │ │ │ └── [https, port 8081] AES128-SHA.bat │ ├── configure tls curve │ │ └── auto │ │ │ ├── [http, port 8080] auto, prefetch.bat │ │ │ ├── [http, port 8080] auto.bat │ │ │ ├── [https, port 8081] auto, prefetch.bat │ │ │ └── [https, port 8081] auto.bat │ └── debug with Node Inspector │ │ ├── [http, port 8080] debugger port 9229, prefetch.bat │ │ ├── [http, port 8080] debugger port 9229.bat │ │ ├── [https, port 8081] debugger port 9229, prefetch.bat │ │ └── [https, port 8081] debugger port 9229.bat ├── 01. video-host specific configs │ ├── 00. deprecated │ │ ├── 01. live TV │ │ │ ├── 01. 123tvnow.com │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ │ ├── [http, port 8080].bat │ │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ │ ├── 02. ustvgo.tv │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ │ ├── [http, port 8080].bat │ │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ │ ├── 03. streamlive.to │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ │ ├── [http, port 8080].bat │ │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ │ ├── 04. yoursports.stream │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ │ ├── [http, port 8080].bat │ │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ │ ├── 05. livenewson.com │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ │ ├── [http, port 8080].bat │ │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── .channels │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ └── bookmarks.md │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ │ └── 06. shidurlive.com │ │ │ │ ├── .bin │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ ├── [http, port 8080].bat │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ ├── 02. vod │ │ │ └── 01. twitch.tv │ │ │ │ ├── .bin │ │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ │ ├── [http, port 8080].bat │ │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ │ └── [https, port 8081].bat │ │ │ │ ├── README.md │ │ │ │ └── proxy.cmd │ │ ├── 03. live sports │ │ │ ├── 01. livecamtv.me │ │ │ │ ├── .channels │ │ │ │ │ ├── 01. vipleague.cc │ │ │ │ │ │ ├── [http, port 8080] ABC.bat │ │ │ │ │ │ ├── [http, port 8080] CBS.bat │ │ │ │ │ │ ├── [http, port 8080] ESPN.bat │ │ │ │ │ │ ├── [http, port 8080] ESPN2.bat │ │ │ │ │ │ ├── [http, port 8080] ESPNU.bat │ │ │ │ │ │ ├── [http, port 8080] FOX.bat │ │ │ │ │ │ ├── [http, port 8080] HBO.bat │ │ │ │ │ │ ├── [http, port 8080] NBA TV.bat │ │ │ │ │ │ ├── [http, port 8080] NBC.bat │ │ │ │ │ │ └── [http, port 8080] NFL Network.bat │ │ │ │ │ ├── 02. nflstream.io │ │ │ │ │ │ └── [http, port 8080] 2018-08-24 Patriots vs Panthers.bat │ │ │ │ │ └── 03. mlbstream.io │ │ │ │ │ │ └── [http, port 8080] 2018-08-25 Red Sox vs Rays.bat │ │ │ │ ├── auth │ │ │ │ │ └── keep_authorization.bat │ │ │ │ └── seelive.cmd │ │ │ ├── 02. bankai.stream │ │ │ │ ├── .bin │ │ │ │ │ ├── [http, port 8080] 1080p, prefetch.bat │ │ │ │ │ ├── [http, port 8080] 1080p.bat │ │ │ │ │ ├── [http, port 8080] 240p, prefetch.bat │ │ │ │ │ ├── [http, port 8080] 240p.bat │ │ │ │ │ ├── [http, port 8080] 480p, prefetch.bat │ │ │ │ │ ├── [http, port 8080] 480p.bat │ │ │ │ │ ├── [http, port 8080] 720p, prefetch.bat │ │ │ │ │ ├── [http, port 8080] 720p.bat │ │ │ │ │ └── [http, port 8080] adaptive bitrate.bat │ │ │ │ ├── .channels │ │ │ │ │ └── 01. bilasport.net │ │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ │ └── bookmarks.md │ │ │ │ ├── auth │ │ │ │ │ └── .gitkeep │ │ │ │ ├── bankai.cmd │ │ │ │ └── bankai.user.js │ │ │ └── 03. riere.club │ │ │ │ ├── .bin │ │ │ │ ├── [http, port 8080] 430p, prefetch.bat │ │ │ │ ├── [http, port 8080] 430p.bat │ │ │ │ ├── [http, port 8080] 540p, prefetch.bat │ │ │ │ ├── [http, port 8080] 540p.bat │ │ │ │ ├── [http, port 8080] 720p, prefetch.bat │ │ │ │ ├── [http, port 8080] 720p.bat │ │ │ │ └── [http, port 8080] adaptive bitrate.bat │ │ │ │ ├── .channels │ │ │ │ ├── 01. bilasport.net │ │ │ │ │ ├── bookmarks.html │ │ │ │ │ └── bookmarks.md │ │ │ │ └── 02. buffstreamz.com │ │ │ │ │ └── buffstreamz.user.js │ │ │ │ ├── auth │ │ │ │ └── .gitkeep │ │ │ │ ├── riere.cmd │ │ │ │ └── riere.user.js │ │ └── README.md │ └── 01. live sports │ │ └── 01. mlb.com │ │ ├── .analysis │ │ ├── 01. bilasport.net │ │ │ └── 01. notes.txt │ │ └── 02. yoursports.stream │ │ │ └── 01. notes.txt │ │ ├── .keystores │ │ ├── 01. bilasport.net │ │ │ ├── .teams │ │ │ │ ├── [http, port 8080] 360p, 30fps, prefetch │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ ├── [http, port 8080] 360p, 30fps │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ ├── [http, port 8080] 720p, 30fps, prefetch │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ ├── [http, port 8080] 720p, 30fps │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ ├── [http, port 8080] 720p, 60fps, prefetch │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ ├── [http, port 8080] 720p, 60fps │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ │ └── [http, port 8080] adaptive bitrate │ │ │ │ │ ├── .common_options.bat │ │ │ │ │ ├── Arizona Diamondbacks.bat │ │ │ │ │ ├── Atlanta Braves.bat │ │ │ │ │ ├── Baltimore Orioles.bat │ │ │ │ │ ├── Boston Red Sox.bat │ │ │ │ │ ├── Chicago Cubs.bat │ │ │ │ │ ├── Chicago White Sox.bat │ │ │ │ │ ├── Cincinnati Reds.bat │ │ │ │ │ ├── Cleveland Indians.bat │ │ │ │ │ ├── Colorado Rockies.bat │ │ │ │ │ ├── Detroit Tigers.bat │ │ │ │ │ ├── Houston Astros.bat │ │ │ │ │ ├── Kansas City Royals.bat │ │ │ │ │ ├── Los Angeles Angels of Anaheim.bat │ │ │ │ │ ├── Los Angeles Dodgers.bat │ │ │ │ │ ├── Miami Marlins.bat │ │ │ │ │ ├── Milwaukee Brewers.bat │ │ │ │ │ ├── Minnesota Twins.bat │ │ │ │ │ ├── New York Mets.bat │ │ │ │ │ ├── New York Yankees.bat │ │ │ │ │ ├── Oakland Athletics.bat │ │ │ │ │ ├── Philadelphia Phillies.bat │ │ │ │ │ ├── Pittsburgh Pirates.bat │ │ │ │ │ ├── San Diego Padres.bat │ │ │ │ │ ├── San Francisco Giants.bat │ │ │ │ │ ├── Seattle Mariners.bat │ │ │ │ │ ├── St. Louis Cardinals.bat │ │ │ │ │ ├── Tampa Bay Rays.bat │ │ │ │ │ ├── Texas Rangers.bat │ │ │ │ │ ├── Toronto Blue Jays.bat │ │ │ │ │ └── Washington Nationals.bat │ │ │ ├── bookmarks.html │ │ │ └── bookmarks.md │ │ └── 02. yoursports.stream │ │ │ ├── .common_options.bat │ │ │ ├── [http, port 8080] prefetch.bat │ │ │ ├── [http, port 8080].bat │ │ │ ├── [https, port 8081] prefetch.bat │ │ │ └── [https, port 8081].bat │ │ ├── auth │ │ └── .gitkeep │ │ └── mlb.cmd ├── 02. NAT tunnel │ ├── 01. expose │ │ ├── .gitignore │ │ ├── 1. run hls-proxy server.bat │ │ ├── 2. run expose server.bat │ │ ├── 3. open expose server admin dashboard.bat │ │ ├── 4. run expose client.bat │ │ ├── 5. open expose client dashboard.bat │ │ ├── 6. play HLS stream [CBS News].bat │ │ ├── README.md │ │ ├── bin │ │ │ └── expose.cmd │ │ └── data │ │ │ ├── client │ │ │ └── .expose │ │ │ │ └── config.php │ │ │ ├── hosts │ │ │ └── server │ │ │ └── .expose │ │ │ └── expose.db │ ├── 02. frp [tcp] │ │ ├── 0. env.bat │ │ ├── 1. run hls-proxy server.bat │ │ ├── 2. run frp server.bat │ │ ├── 3. open frp server admin dashboard.bat │ │ ├── 4. run frp client.bat │ │ ├── 5. open frp client dashboard.bat │ │ ├── 6. play HLS stream [CBS News].bat │ │ ├── README.md │ │ └── data │ │ │ ├── client │ │ │ └── frpc.ini │ │ │ ├── hosts │ │ │ └── server │ │ │ └── frps.ini │ ├── 03. frp [http] │ │ ├── 0. env.bat │ │ ├── 1. run hls-proxy server.bat │ │ ├── 2. run frp server.bat │ │ ├── 3. open frp server admin dashboard.bat │ │ ├── 4. run frp client.bat │ │ ├── 5. open frp client dashboard.bat │ │ ├── 6. play HLS stream [CBS News].bat │ │ ├── README.md │ │ └── data │ │ │ ├── client │ │ │ └── frpc.ini │ │ │ ├── hosts │ │ │ └── server │ │ │ └── frps.ini │ └── 04. [hosted, ssh client] localhost.run │ │ ├── .gitignore │ │ ├── 1. run ssh client.sh │ │ ├── 2. run hls-proxy server.sh │ │ └── data │ │ └── client │ │ └── .ssh │ │ └── .gitkeep └── 03. Express.js app with custom route │ ├── 01. basic usage (with v2.x workaround) │ ├── demo.html │ ├── index.js │ └── start.bat │ ├── 02. basic usage │ ├── demo.html │ ├── index.js │ └── start.bat │ ├── 03. advanced usage │ ├── demo.html │ ├── index.js │ ├── send-request-to-logger.bat │ └── start.bat │ ├── package-lock.json │ └── package.json ├── .related └── .recipes │ ├── 01. Streamlink │ ├── 01. livecamtv.me │ │ ├── .channels │ │ │ ├── 01. vipleague.cc │ │ │ │ ├── [http, port 8080] ABC.bat │ │ │ │ ├── [http, port 8080] CBS.bat │ │ │ │ ├── [http, port 8080] ESPN.bat │ │ │ │ ├── [http, port 8080] ESPN2.bat │ │ │ │ ├── [http, port 8080] ESPNU.bat │ │ │ │ ├── [http, port 8080] FOX.bat │ │ │ │ ├── [http, port 8080] HBO.bat │ │ │ │ ├── [http, port 8080] NBA TV.bat │ │ │ │ ├── [http, port 8080] NBC.bat │ │ │ │ └── [http, port 8080] NFL Network.bat │ │ │ └── 02. nflstream.io │ │ │ │ └── [http, port 8080] 2018-08-24 Patriots vs Panthers.bat │ │ ├── auth │ │ │ └── keep_authorization.bat │ │ ├── notes.txt │ │ └── seelive.cmd │ ├── env.bat │ └── notes.txt │ └── 02. ffmpeg │ ├── 1. download m3u8, save as mp4 │ └── 01. CBC.ca │ │ ├── Being Erica │ │ ├── Season 1.bat │ │ ├── Season 2.bat │ │ ├── Season 3.bat │ │ └── Season 4.bat │ │ └── notes.md │ └── env.bat ├── .tests ├── end-to-end │ ├── echo_request_headers.sh │ └── node_runtime_versions │ │ ├── node_06 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ │ └── [http, port 8080].bat │ │ ├── node_07 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ │ └── [http, port 8080].bat │ │ ├── node_08 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ │ └── [http, port 8080].bat │ │ ├── node_10 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ │ └── [http, port 8080].bat │ │ ├── node_12 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ │ └── [http, port 8080].bat │ │ └── node_16 │ │ ├── [http, port 8080].bat │ │ └── copy_req_headers │ │ └── [http, port 8080].bat └── unit │ ├── regexp_indices.bat │ ├── regexp_indices.js │ └── regexp_indices.log ├── LICENSE.txt ├── README.md ├── hls-proxy ├── acl_pass.js ├── bin │ ├── hlsd.js │ └── lib │ │ ├── help.js │ │ └── process_argv.js ├── cookies.js ├── expressjs_utils.js ├── manifest_parser.js ├── proxy.js ├── regexp_indices.js ├── segment_cache.js ├── segment_cache_storage │ ├── filesystem │ │ └── index.js │ ├── index.js │ └── memory │ │ └── index.js ├── servers │ ├── cert │ │ ├── .bin │ │ │ ├── create_cert.bat │ │ │ └── create_cert.sh │ │ ├── cert.pem │ │ └── key.pem │ ├── start_http.js │ └── start_https.js ├── timers.js ├── url.js └── utils.js ├── package-lock.json └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | # ------------------------------------------------ 2 | # https://github.com/github/linguist 3 | # https://github.com/github/linguist#vendored-code 4 | # https://github.com/github/linguist/blob/master/lib/linguist/languages.yml 5 | 6 | .recipes/* linguist-vendored=true 7 | .related/* linguist-vendored=true 8 | 9 | * linguist-language=JavaScript 10 | 11 | # ------------------------------------------------ 12 | 13 | * text=auto 14 | 15 | *.cmd text eol=crlf 16 | *.bat text eol=crlf 17 | *.sh text eol=lf 18 | 19 | # ------------------------------------------------ 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | .profiler/**/.clinic/ 4 | .profiler/**/node_modules/ 5 | .profiler/**/*.log 6 | .recipes/.lib/**/temp1.txt 7 | .recipes/.lib/**/temp2.txt 8 | .recipes/**/auth/hooks.js 9 | .recipes/**/auth/cookies.txt 10 | .recipes/**/private.bat 11 | .recipes/**/private.log 12 | .recipes/**/cache_storage/ 13 | .recipes/**/node_modules/ 14 | .related/.recipes/**/auth/cookies.txt 15 | .related/.recipes/**/*.mp4 16 | .related/.recipes/**/*.aac 17 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .git/ 3 | .notes/ 4 | .profiler/ 5 | .recipes/ 6 | .related/ 7 | .tests/ 8 | -------------------------------------------------------------------------------- /.profiler/1-node.js/bash/1-profile-proxy.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 | 5 | # https://nodejs.org/en/learn/getting-started/profiling 6 | 7 | hlsd_home="${DIR}/../../.." 8 | 9 | cd "$DIR" 10 | NODE_ENV=production node --prof "${hlsd_home}/hls-proxy/bin/hlsd.js" --port 8080 --copy-req-headers --req-insecure 11 | -------------------------------------------------------------------------------- /.profiler/1-node.js/bash/3-run-tick-processor.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 | 5 | # https://nodejs.org/en/learn/getting-started/profiling 6 | 7 | cd "$DIR" 8 | log=`cd "$DIR" && node -e "const fs = require('fs'); const logs = fs.readdirSync(process.cwd()).filter(file => file.startsWith('isolate-0') && file.endsWith('.log')); process.stdout.write((logs.length === 1) ? logs[0] : '');"` 9 | 10 | if [ -n "$log" ];then 11 | node --prof-process "$log" > isolate-processed.log 12 | 13 | echo '' 14 | echo "processed log file: '${log}'" 15 | else 16 | echo 'could not find a log file to process' 17 | fi 18 | -------------------------------------------------------------------------------- /.profiler/1-node.js/windows-cmd/1-profile-proxy.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set DIR=%~dp0. 4 | 5 | rem :: https://nodejs.org/en/learn/getting-started/profiling 6 | 7 | set hlsd_home=%DIR%\..\..\.. 8 | set NODE_ENV=production 9 | 10 | cd /D "%DIR%" 11 | node --prof "%hlsd_home%\hls-proxy\bin\hlsd.js" --port 8080 --copy-req-headers --req-insecure 12 | -------------------------------------------------------------------------------- /.recipes/.bin/play_in_VLC.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set url=%~1 4 | set buffer_ms=%~2 5 | 6 | if not defined url ( 7 | echo URL of video stream is required! 8 | exit /b 1 9 | ) 10 | 11 | if not defined buffer_ms set buffer_ms=5000 12 | 13 | set VLC_home=C:\PortableApps\VLC\3.0.3 14 | set VLC_exe="%VLC_home%\VLCPortable.exe" 15 | if not exist %VLC_exe% set VLC_exe=vlc 16 | 17 | set VLC_opts= 18 | set VLC_opts=%VLC_opts% --start-paused 19 | set VLC_opts=%VLC_opts% --network-caching %buffer_ms% 20 | 21 | start "VLC" %VLC_exe% %VLC_opts% %url% 22 | -------------------------------------------------------------------------------- /.recipes/.bin/start_hlsd.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_js="%~dp0..\..\hls-proxy\bin\hlsd.js" 4 | 5 | if defined verbosity_level ( 6 | set hlsd_opts=%hlsd_opts% -v %verbosity_level% 7 | ) 8 | 9 | node %hlsd_node_opts% %hlsd_js% %hlsd_opts% 10 | 11 | if not %ERRORLEVEL% EQU 0 ( 12 | echo. 13 | pause 14 | ) 15 | -------------------------------------------------------------------------------- /.recipes/.lib/LAN/print_proxied_url.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\get_proxied_url.bat" %* 4 | 5 | cls 6 | echo URL of video stream through HLS-Proxy: 7 | echo ====================================== 8 | echo %proxied_URL% 9 | echo. 10 | -------------------------------------------------------------------------------- /.recipes/.lib/WAN/print_proxied_url.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\get_proxied_url.bat" %* 4 | 5 | cls 6 | echo URL of video stream through HLS-Proxy: 7 | echo ====================================== 8 | echo %proxied_URL% 9 | echo. 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --prefetch --max-segments 20 4 | 5 | call "%~dp0.\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if not defined verbosity_level ( 4 | set verbosity_level=1 5 | ) 6 | 7 | set hlsd_opts=%hlsd_opts% --port 8080 8 | 9 | call "%~dp0..\.bin\start_hlsd.bat" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --prefetch --max-segments 20 4 | 5 | call "%~dp0.\[https, port 8081].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if not defined verbosity_level ( 4 | set verbosity_level=1 5 | ) 6 | 7 | set hlsd_opts=%hlsd_opts% --tls 8 | set hlsd_opts=%hlsd_opts% --port 8081 9 | 10 | call "%~dp0..\.bin\start_hlsd.bat" 11 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl ip whitelist/192.168.1.100/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-ip "%dirname%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl ip whitelist/192.168.1.100/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-ip "%dirname%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl ip whitelist/192.168.1.100/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-ip "%dirname%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl ip whitelist/192.168.1.100/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-ip "%dirname%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl ip whitelist/192.168.1.100/env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set cd0=%cd% 4 | 5 | cd /D "%~dp0." 6 | set cd1=%cd% 7 | 8 | cd .. 9 | set cd2=%cd% 10 | 11 | call set dirname=%%cd1:%cd2%\=%% 12 | 13 | cd /D "%cd0%" 14 | set cd0= 15 | set cd1= 16 | set cd2= 17 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl pass whitelist/1234/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-pass "%password%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl pass whitelist/1234/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-pass "%password%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl pass whitelist/1234/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-pass "%password%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl pass whitelist/1234/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\env.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --acl-pass "%password%" 8 | 9 | call "%~dp0..\..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure acl pass whitelist/1234/env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set cd0=%cd% 4 | 5 | cd /D "%~dp0." 6 | set cd1=%cd% 7 | 8 | cd .. 9 | set cd2=%cd% 10 | 11 | call set password=%%cd1:%cd2%\=%% 12 | 13 | cd /D "%cd0%" 14 | set cd0= 15 | set cd1= 16 | set cd2= 17 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache key/[http, port 8080, prefetch] key is URL.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-key 2 4 | 5 | call "%~dp0..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache key/[http, port 8080, prefetch] key is filename.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-key 1 4 | 5 | call "%~dp0..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache key/[https, port 8081, prefetch] key is URL.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-key 2 4 | 5 | call "%~dp0..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache key/[https, port 8081, prefetch] key is filename.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-key 1 4 | 5 | call "%~dp0..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache storage/[http, port 8080, prefetch] storage is filesystem.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set cache_storage_dir="%~dp0.\cache_storage" 4 | 5 | set hlsd_opts=%hlsd_opts% --cache-storage "filesystem" --cache-storage-fs-dirpath %cache_storage_dir% 6 | 7 | if exist %cache_storage_dir% rm -rf %cache_storage_dir% 8 | mkdir %cache_storage_dir% 9 | 10 | call "%~dp0..\[http, port 8080] prefetch.bat" 11 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache storage/[http, port 8080, prefetch] storage is memory.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-storage "memory" 4 | 5 | call "%~dp0..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache storage/[https, port 8081, prefetch] storage is filesystem.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set cache_storage_dir="%~dp0.\cache_storage" 4 | 5 | set hlsd_opts=%hlsd_opts% --cache-storage "filesystem" --cache-storage-fs-dirpath %cache_storage_dir% 6 | 7 | if exist %cache_storage_dir% rm -rf %cache_storage_dir% 8 | mkdir %cache_storage_dir% 9 | 10 | call "%~dp0..\[https, port 8081] prefetch.bat" 11 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure cache storage/[https, port 8081, prefetch] storage is memory.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --cache-storage "memory" 4 | 5 | call "%~dp0..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/phproxy/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/phproxy/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/phproxy/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/phproxy/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/phproxy/data/hooks.js: -------------------------------------------------------------------------------- 1 | /* 2 | * anonymous web proxy: 3 | * https://2ip.io/anonim/ 4 | * one of the available US servers: 5 | * http://fgks.org/proxy/ 6 | * software: 7 | * https://github.com/emersion/phproxy 8 | * PHProxy 0.5b2 9 | */ 10 | 11 | module.exports = { 12 | "redirect_final": (url) => `http://fgks.org/proxy/index.php?hl=e1&q=${encodeURIComponent(url)}` 13 | } 14 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/request_intervals/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=-1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/request_intervals/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=-1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/request_intervals/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=-1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/request_intervals/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=-1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/url_obfuscation/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/url_obfuscation/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/url_obfuscation/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/url_obfuscation/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=1 4 | 5 | set hlsd_opts=%hlsd_opts% --hooks "%~dp0.\data\hooks.js" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure hooks/url_obfuscation/data/lib/info.txt: -------------------------------------------------------------------------------- 1 | https://www.npmjs.com/package/cryptr 2 | https://github.com/MauriceButler/cryptr 3 | https://github.com/MauriceButler/cryptr/releases 4 | 5 | https://github.com/MauriceButler/cryptr/releases/tag/v6.3.0 6 | https://github.com/MauriceButler/cryptr/tree/v6.3.0 7 | https://github.com/MauriceButler/cryptr/blob/v6.3.0/index.js 8 | https://github.com/MauriceButler/cryptr/blob/v6.3.0/LICENCE 9 | version: 6.3.0 10 | license: MIT 11 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure http proxy/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\private.bat" 4 | 5 | set verbosity_level=2 6 | 7 | set hlsd_opts=%hlsd_opts% --http-proxy %http_proxy% 8 | 9 | call "%~dp0..\%~nx0" 10 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure http proxy/print-WAN-IP.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set log="%~dp0.\private.log" 4 | 5 | set url_direct="https://httpbin.org/ip" 6 | set url_proxied="http://127.0.0.1:8080/aHR0cHM6Ly9odHRwYmluLm9yZy9pcA==.json" 7 | 8 | echo real WAN IP:>%log% 9 | curl -s -S %url_direct% >>%log% 10 | 11 | echo.>>%log% 12 | 13 | echo proxied WAN IP:>>%log% 14 | curl -s -S %url_proxied% >>%log% 15 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure http proxy/private.bat-template: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set http_proxy="http://myusername:mypassword@myproxy.example.com:1234" 4 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v2/[http, port 8080] v2, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | call "%~dp0..\..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v2/[http, port 8080] v2.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | call "%~dp0..\..\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v2/[https, port 8081] v2, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | call "%~dp0..\..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v2/[https, port 8081] v2.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | call "%~dp0..\..\[https, port 8081].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v3/[http, port 8080] v3, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | call "%~dp0..\..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v3/[http, port 8080] v3.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | call "%~dp0..\..\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v3/[https, port 8081] v3, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | call "%~dp0..\..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v3/[https, port 8081] v3.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=3 4 | 5 | call "%~dp0..\..\[https, port 8081].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v4/[http, port 8080] v4, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=4 4 | 5 | call "%~dp0..\..\[http, port 8080] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v4/[http, port 8080] v4.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=4 4 | 5 | call "%~dp0..\..\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v4/[https, port 8081] v4, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=4 4 | 5 | call "%~dp0..\..\[https, port 8081] prefetch.bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure log verbosity/v4/[https, port 8081] v4.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=4 4 | 5 | call "%~dp0..\..\[https, port 8081].bat" 6 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090], static public host [hls-proxy.my-domain]/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host "hls-proxy.my-domain:9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090], static public host [hls-proxy.my-domain]/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host "hls-proxy.my-domain:9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090], static public host [hls-proxy.my-domain]/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host "hls-proxy.my-domain:9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090], static public host [hls-proxy.my-domain]/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host "hls-proxy.my-domain:9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090]/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host ":9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090]/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host ":9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090]/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host ":9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure port mapping/public port [9090]/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set verbosity_level=2 4 | 5 | set hlsd_opts=%hlsd_opts% --host ":9090" 6 | 7 | call "%~dp0..\..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure tls certificate/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --tls-cert "%~dp0.\cert\cert.pem" 4 | set hlsd_opts=%hlsd_opts% --tls-key "%~dp0.\cert\key.pem" 5 | set hlsd_opts=%hlsd_opts% --tls-pass "%~dp0.\cert\pass.phrase" 6 | 7 | call "%~dp0..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure tls certificate/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=%hlsd_opts% --tls-cert "%~dp0.\cert\cert.pem" 4 | set hlsd_opts=%hlsd_opts% --tls-key "%~dp0.\cert\key.pem" 5 | set hlsd_opts=%hlsd_opts% --tls-pass "%~dp0.\cert\pass.phrase" 6 | 7 | call "%~dp0..\%~nx0" 8 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure tls certificate/cert/pass.phrase: -------------------------------------------------------------------------------- 1 | HLS-proxy -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure tls curve/auto/[http, port 8080] auto.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: -------------------------------------------------------------------------- 4 | rem :: https://github.com/nodejs/node/issues/16196 5 | rem :: -------------------------------------------------------------------------- 6 | rem :: this setting is a workaround for the error: 7 | rem :: "SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure" 8 | rem :: -------------------------------------------------------------------------- 9 | 10 | set hlsd_opts=%hlsd_opts% --req-secure-curve "auto" 11 | 12 | call "%~dp0..\..\[http, port 8080].bat" 13 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/configure tls curve/auto/[https, port 8081] auto.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: -------------------------------------------------------------------------- 4 | rem :: https://github.com/nodejs/node/issues/16196 5 | rem :: -------------------------------------------------------------------------- 6 | rem :: this setting is a workaround for the error: 7 | rem :: "SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure" 8 | rem :: -------------------------------------------------------------------------- 9 | 10 | set hlsd_opts=%hlsd_opts% --req-secure-curve "auto" 11 | 12 | call "%~dp0..\..\[https, port 8081].bat" 13 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/debug with Node Inspector/[http, port 8080] debugger port 9229.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: -------------------------------------------------------------------------- 4 | rem :: https://nodejs.org/en/docs/guides/debugging-getting-started/ 5 | rem :: -------------------------------------------------------------------------- 6 | rem :: use Chromium browser to attach to debugger with DevTools: 7 | rem :: chrome://inspect 8 | rem :: -------------------------------------------------------------------------- 9 | 10 | set hlsd_node_opts=%hlsd_node_opts% --inspect-brk="127.0.0.1:9229" 11 | 12 | call "%~dp0..\[http, port 8080].bat" 13 | -------------------------------------------------------------------------------- /.recipes/00. generic use cases/debug with Node Inspector/[https, port 8081] debugger port 9229.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: -------------------------------------------------------------------------- 4 | rem :: https://nodejs.org/en/docs/guides/debugging-getting-started/ 5 | rem :: -------------------------------------------------------------------------- 6 | rem :: use Chromium browser to attach to debugger with DevTools: 7 | rem :: chrome://inspect 8 | rem :: -------------------------------------------------------------------------- 9 | 10 | set hlsd_node_opts=%hlsd_node_opts% --inspect-brk="127.0.0.1:9229" 11 | 12 | call "%~dp0..\[https, port 8081].bat" 13 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/01. 123tvnow.com/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/01. 123tvnow.com/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/01. 123tvnow.com/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/01. 123tvnow.com/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/02. ustvgo.tv/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/02. ustvgo.tv/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/02. ustvgo.tv/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/02. ustvgo.tv/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/03. streamlive.to/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/03. streamlive.to/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/03. streamlive.to/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/03. streamlive.to/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/04. yoursports.stream/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/04. yoursports.stream/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/04. yoursports.stream/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/04. yoursports.stream/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/05. livenewson.com/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/05. livenewson.com/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/05. livenewson.com/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/05. livenewson.com/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/05. livenewson.com/README.md: -------------------------------------------------------------------------------- 1 | * website hosting live TV video streams: [livenewson.com](https://www.livenewson.com/category/american) 2 | * [list of available streams](https://github.com/warren-bank/HLS-Proxy/tree/master/.recipes/01.%20live%20TV/04.%20livenewson.com/.channels) 3 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/06. shidurlive.com/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/06. shidurlive.com/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/06. shidurlive.com/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/06. shidurlive.com/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/01. live TV/06. shidurlive.com/README.md: -------------------------------------------------------------------------------- 1 | * website hosting live TV video streams: [shidurlive.com](https://shidurlive.com/) 2 | - site hosts a video player that is embedded on other sites within an iframe 3 | * [Greasemonkey userscript](https://github.com/warren-bank/crx-miscellaneous/raw/greasemonkey-userscript/greasemonkey-userscript/ShidurLive-embed.user.js) to extract the URL for the HLS manifest of the video stream in an embedded iframe 4 | - extra permission: need to allow popups on domains that host the embedded iframe 5 | * examples of such domains: 6 | - [2ndrun.tv](http://2ndrun.tv/) 7 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/02. vod/01. twitch.tv/.bin/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/02. vod/01. twitch.tv/.bin/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8080 4 | set tls=0 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/02. vod/01. twitch.tv/.bin/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=1 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/02. vod/01. twitch.tv/.bin/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set port=8081 4 | set tls=1 5 | set prefetch=0 6 | set verbosity=1 7 | 8 | call "%~dp0..\proxy.cmd" "%port%" "%tls%" "%prefetch%" "%verbosity%" 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/02. vod/01. twitch.tv/README.md: -------------------------------------------------------------------------------- 1 | * website hosting both live and video-on-demand streams: [twitch.tv](https://www.twitch.tv/) 2 | 3 | #### Shout-outs To: 4 | 5 | * [The Roxy Gunn Project](https://www.twitch.tv/roxygunnproject/videos?filter=all&sort=time) 6 | - [Alternative Rock From Las Vegas](https://www.roxygunnproject.com/) 7 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 1080p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 1080p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 240p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=4 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 240p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=4 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 480p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 480p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 720p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=2 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] 720p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=2 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.bin/[http, port 8080] adaptive bitrate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate= 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\bankai.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/.channels/01. bilasport.net/bookmarks.md: -------------------------------------------------------------------------------- 1 | #### BilaSport NFL Bookmarks: 2 | 3 | * [game schedule](http://bilasport.net/schedule.html) 4 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/auth/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warren-bank/HLS-Proxy/bb4c39b96019c52781b4e7e9bb596a558cabeb6d/.recipes/01. video-host specific configs/00. deprecated/03. live sports/02. bankai.stream/auth/.gitkeep -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 430p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 430p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 540p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 540p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 720p, prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=2 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] 720p.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=2 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.bin/[http, port 8080] adaptive bitrate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate= 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | call "%~dp0..\riere.cmd" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/.channels/01. bilasport.net/bookmarks.md: -------------------------------------------------------------------------------- 1 | #### BilaSport NFL Bookmarks: 2 | 3 | * [game schedule](http://bilasport.net/schedule.html) 4 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/auth/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warren-bank/HLS-Proxy/bb4c39b96019c52781b4e7e9bb596a558cabeb6d/.recipes/01. video-host specific configs/00. deprecated/03. live sports/03. riere.club/auth/.gitkeep -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/00. deprecated/README.md: -------------------------------------------------------------------------------- 1 | Recipes having video-host specific configs are now considered deprecated. 2 | 3 | Nearly all such recipes contain 99% identical boilerplate, and only vary by the "Referer" and "Origin" request headers that are sent to the video-host. 4 | 5 | A [recent update](https://github.com/warren-bank/HLS-Proxy/releases/tag/v0.18.0) allows these 2x request headers to be configured per video stream within the URL sent to _HLS Proxy_. 6 | The format to construct such a URL is described in the top-level [README](https://github.com/warren-bank/HLS-Proxy/blob/master/README.md#url-format). 7 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1200 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps, prefetch/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=1200 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 360p, 30fps/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3500 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps, prefetch/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=3500 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 30fps/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=5600 4 | set port=8080 5 | set tls=0 6 | set prefetch=1 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps, prefetch/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate=5600 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] 720p, 60fps/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set bitrate= 4 | set port=8080 5 | set tls=0 6 | set prefetch=0 7 | set verbosity=1 8 | 9 | set PATH=%~dp0..\..\..\..;%PATH% 10 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Arizona Diamondbacks.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/diamondbacks.php 5 | 6 | set keystore=http://bilasport.net/keys/Diamondbacks.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Atlanta Braves.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/braves.php 5 | 6 | set keystore=http://bilasport.net/keys/Braves.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Baltimore Orioles.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/orioles.php 5 | 6 | set keystore=http://bilasport.net/keys/Orioles.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Boston Red Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/redsox.php 5 | 6 | set keystore=http://bilasport.net/keys/Redsox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Chicago Cubs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cubs.php 5 | 6 | set keystore=http://bilasport.net/keys/Cubs.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Chicago White Sox.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/whitesox.php 5 | 6 | set keystore=http://bilasport.net/keys/Whitesox.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Cincinnati Reds.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/reds.php 5 | 6 | set keystore=http://bilasport.net/keys/Reds.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Cleveland Indians.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/indians.php 5 | 6 | set keystore=http://bilasport.net/keys/Indians.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Colorado Rockies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rockies.php 5 | 6 | set keystore=http://bilasport.net/keys/Rockies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Detroit Tigers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/tigers.php 5 | 6 | set keystore=http://bilasport.net/keys/Tigers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Houston Astros.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/astros.php 5 | 6 | set keystore=http://bilasport.net/keys/Astros.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Kansas City Royals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/royals.php 5 | 6 | set keystore=http://bilasport.net/keys/Royals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Los Angeles Angels of Anaheim.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/angels.php 5 | 6 | set keystore=http://bilasport.net/keys/Angels.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Los Angeles Dodgers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/dodgers.php 5 | 6 | set keystore=http://bilasport.net/keys/Dodgers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Miami Marlins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/marlins.php 5 | 6 | set keystore=http://bilasport.net/keys/Marlins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Milwaukee Brewers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/brewers.php 5 | 6 | set keystore=http://bilasport.net/keys/Brewers.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Minnesota Twins.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/twins.php 5 | 6 | set keystore=http://bilasport.net/keys/Twins.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/New York Mets.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mets.php 5 | 6 | set keystore=http://bilasport.net/keys/Mets.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/New York Yankees.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/yankees.php 5 | 6 | set keystore=http://bilasport.net/keys/Yankees.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Oakland Athletics.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/athletics.php 5 | 6 | set keystore=http://bilasport.net/keys/Athletics.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Philadelphia Phillies.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/phillies.php 5 | 6 | set keystore=http://bilasport.net/keys/Phillies.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Pittsburgh Pirates.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/pirates.php 5 | 6 | set keystore=http://bilasport.net/keys/Pirates.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/San Diego Padres.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/padres.php 5 | 6 | set keystore=http://bilasport.net/keys/Padres.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/San Francisco Giants.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/giants.php 5 | 6 | set keystore=http://bilasport.net/keys/Giants.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Seattle Mariners.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/mariners.php 5 | 6 | set keystore=http://bilasport.net/keys/Mariners.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/St. Louis Cardinals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/cardinals.php 5 | 6 | set keystore=http://bilasport.net/keys/Cardinals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Tampa Bay Rays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/rays.php 5 | 6 | set keystore=http://bilasport.net/keys/Rays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Texas Rangers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/texas.php 5 | 6 | set keystore=http://bilasport.net/keys/Texas.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Toronto Blue Jays.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/jays.php 5 | 6 | set keystore=http://bilasport.net/keys/Jays.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/01. bilasport.net/.teams/[http, port 8080] adaptive bitrate/Washington Nationals.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: "keystore" obtained with "bilasport.user.js" on: 4 | rem :: http://bilasport.net/mlb/nationals.php 5 | 6 | set keystore=http://bilasport.net/keys/Nationals.php?$2 7 | 8 | call "%~dp0.\.common_options.bat" 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/02. yoursports.stream/.common_options.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set unicode_ampersand=\u0026 4 | 5 | set keystore=http://yrsprts.io/key/mlb.php?tk=tQhngkeHBV%unicode_ampersand%url= 6 | set bitrate= 7 | 8 | set PATH=%~dp0..\..;%PATH% 9 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/02. yoursports.stream/[http, port 8080] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\.common_options.bat" 4 | 5 | set port=8080 6 | set tls=0 7 | set prefetch=1 8 | set verbosity=1 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/02. yoursports.stream/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\.common_options.bat" 4 | 5 | set port=8080 6 | set tls=0 7 | set prefetch=0 8 | set verbosity=1 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/02. yoursports.stream/[https, port 8081] prefetch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\.common_options.bat" 4 | 5 | set port=8081 6 | set tls=1 7 | set prefetch=1 8 | set verbosity=1 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/.keystores/02. yoursports.stream/[https, port 8081].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\.common_options.bat" 4 | 5 | set port=8081 6 | set tls=1 7 | set prefetch=0 8 | set verbosity=1 9 | 10 | mlb "%keystore%" "%bitrate%" "%port%" "%tls%" "%prefetch%" "%verbosity%" 11 | -------------------------------------------------------------------------------- /.recipes/01. video-host specific configs/01. live sports/01. mlb.com/auth/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warren-bank/HLS-Proxy/bb4c39b96019c52781b4e7e9bb596a558cabeb6d/.recipes/01. video-host specific configs/01. live sports/01. mlb.com/auth/.gitkeep -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/.gitignore: -------------------------------------------------------------------------------- 1 | bin/expose-1.5.1.phar 2 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/1. run hls-proxy server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set recipes_home=%~dp0..\.. 4 | 5 | call "%recipes_home%\00. generic use cases\configure port mapping\public port [9090], static public host [hls-proxy.my-domain]\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/2. run expose server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set PATH=%~dp0.\bin;%PATH% 4 | 5 | set HOME=%~dp0.\data\server 6 | 7 | call expose serve my-domain --port=9090 8 | 9 | rem :: Expose server running on port 9090. 10 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/3. open expose server admin dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 4 | if not exist %chrome% set chrome=chrome 5 | 6 | set dashboard_url="http://username:password@expose.my-domain:9090" 7 | 8 | start "dashboard" %chrome% %dashboard_url% 9 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/4. run expose client.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set PATH=%~dp0.\bin;%PATH% 4 | 5 | set HOME=%~dp0.\data\client 6 | 7 | call expose share localhost:8080 --subdomain=hls-proxy 8 | 9 | rem :: Thank you for using expose. 10 | rem :: 11 | rem :: Local-URL: localhost:8080 12 | rem :: Dashboard-URL: http://127.0.0.1:4040 13 | rem :: Expose-URL: http://hls-proxy.my-domain:9090 14 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/5. open expose client dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 4 | if not exist %chrome% set chrome=chrome 5 | 6 | set dashboard_url="http://localhost:4040" 7 | 8 | start "dashboard" %chrome% %dashboard_url% 9 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/6. play HLS stream [CBS News].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 4 | if not exist %chrome% set chrome=chrome 5 | 6 | set recipes_home=%~dp0..\.. 7 | 8 | set url="https://www.cbsnews.com/common/video/cbsn_header_prod.m3u8" 9 | set host="hls-proxy.my-domain:9090" 10 | set tls="0" 11 | 12 | call "%recipes_home%\.lib\WAN\get_video_player_url.bat" %url% %host% %tls% 13 | 14 | start "video_player" %chrome% %video_player_url% 15 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/bin/expose.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set PHP_HOME=C:\PortableApps\php\7.4.15 4 | set PATH=%PHP_HOME%;%PATH% 5 | 6 | set EXPOSE_PHAR="%~dp0.\expose-1.5.1.phar" 7 | 8 | if not exist %EXPOSE_PHAR% ( 9 | wget -O %EXPOSE_PHAR% --no-check-certificate "https://github.com/beyondcode/expose/raw/1.5.1/builds/expose" 10 | ) 11 | 12 | php.exe %EXPOSE_PHAR% %* 13 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/data/hosts: -------------------------------------------------------------------------------- 1 | # ---------------------------------------- 2 | # Windows: 3 | # C:\Windows\System32\drivers\etc\hosts 4 | # ---------------------------------------- 5 | # Linux: 6 | # /etc/hosts 7 | # ---------------------------------------- 8 | 9 | 127.0.0.1 localhost 10 | 127.0.0.1 my-domain 11 | 127.0.0.1 expose.my-domain 12 | 127.0.0.1 hls-proxy.my-domain 13 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/01. expose/data/server/.expose/expose.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warren-bank/HLS-Proxy/bb4c39b96019c52781b4e7e9bb596a558cabeb6d/.recipes/02. NAT tunnel/01. expose/data/server/.expose/expose.db -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/0. env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: https://github.com/fatedier/frp 4 | rem :: https://github.com/fatedier/frp/releases/tag/v0.35.1 5 | set frp_HOME=C:\PortableApps\frp\0.35.1 6 | 7 | set PATH=%frp_HOME%;%PATH% 8 | 9 | set FRP_SERVER_ADDR=hls-proxy.my-domain 10 | set FRP_SERVER_PORT=7000 11 | set FRP_SERVER_DASHBOARD_PORT=7500 12 | 13 | set FRP_CLIENT_DASHBOARD_IP=127.0.0.1 14 | set FRP_CLIENT_DASHBOARD_PORT=7400 15 | 16 | set HLS_PROXY_NETWORK_PROTOCOL=tcp 17 | set HLS_PROXY_LOCAL_IP=127.0.0.1 18 | set HLS_PROXY_LOCAL_PORT=8080 19 | set HLS_PROXY_REMOTE_PORT=9090 20 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/1. run hls-proxy server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set recipes_home=%~dp0..\.. 4 | 5 | call "%recipes_home%\00. generic use cases\configure port mapping\public port [9090], static public host [hls-proxy.my-domain]\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/2. run frp server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set HOME=%~dp0.\data\server 6 | 7 | frps -c "%HOME%\frps.ini" 8 | 9 | rem :: frps tcp listen on 0.0.0.0:7000 10 | rem :: Dashboard listen on 0.0.0.0:7500 11 | rem :: frps started successfully 12 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/3. open frp server admin dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 6 | if not exist %chrome% set chrome=chrome 7 | 8 | set dashboard_url="http://admin:admin@%FRP_SERVER_ADDR%:%FRP_SERVER_DASHBOARD_PORT%" 9 | 10 | start "dashboard" %chrome% %dashboard_url% 11 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/4. run frp client.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set HOME=%~dp0.\data\client 6 | 7 | frpc -c "%HOME%\frpc.ini" 8 | 9 | rem :: login to server success 10 | rem :: proxy added: [hls-proxy] 11 | rem :: [hls-proxy] start proxy success 12 | rem :: admin server listen on 127.0.0.1:7400 13 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/5. open frp client dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 6 | if not exist %chrome% set chrome=chrome 7 | 8 | set dashboard_url="http://admin:admin@%FRP_CLIENT_DASHBOARD_IP%:%FRP_CLIENT_DASHBOARD_PORT%" 9 | 10 | start "dashboard" %chrome% %dashboard_url% 11 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/6. play HLS stream [CBS News].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 4 | if not exist %chrome% set chrome=chrome 5 | 6 | set recipes_home=%~dp0..\.. 7 | 8 | set url="https://www.cbsnews.com/common/video/cbsn_header_prod.m3u8" 9 | set host="hls-proxy.my-domain:9090" 10 | set tls="0" 11 | 12 | call "%recipes_home%\.lib\WAN\get_video_player_url.bat" %url% %host% %tls% 13 | 14 | start "video_player" %chrome% %video_player_url% 15 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/data/client/frpc.ini: -------------------------------------------------------------------------------- 1 | [common] 2 | server_addr = {{ .Envs.FRP_SERVER_ADDR }} 3 | server_port = {{ .Envs.FRP_SERVER_PORT }} 4 | admin_addr = {{ .Envs.FRP_CLIENT_DASHBOARD_IP }} 5 | admin_port = {{ .Envs.FRP_CLIENT_DASHBOARD_PORT }} 6 | 7 | [hls-proxy] 8 | type = {{ .Envs.HLS_PROXY_NETWORK_PROTOCOL }} 9 | local_ip = {{ .Envs.HLS_PROXY_LOCAL_IP }} 10 | local_port = {{ .Envs.HLS_PROXY_LOCAL_PORT }} 11 | remote_port = {{ .Envs.HLS_PROXY_REMOTE_PORT }} 12 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/data/hosts: -------------------------------------------------------------------------------- 1 | # ---------------------------------------- 2 | # Windows: 3 | # C:\Windows\System32\drivers\etc\hosts 4 | # ---------------------------------------- 5 | # Linux: 6 | # /etc/hosts 7 | # ---------------------------------------- 8 | 9 | 127.0.0.1 hls-proxy.my-domain 10 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/02. frp [tcp]/data/server/frps.ini: -------------------------------------------------------------------------------- 1 | [common] 2 | bind_port = {{ .Envs.FRP_SERVER_PORT }} 3 | dashboard_port = {{ .Envs.FRP_SERVER_DASHBOARD_PORT }} 4 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/0. env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: https://github.com/fatedier/frp 4 | rem :: https://github.com/fatedier/frp/releases/tag/v0.35.1 5 | set frp_HOME=C:\PortableApps\frp\0.35.1 6 | 7 | set PATH=%frp_HOME%;%PATH% 8 | 9 | set FRP_SERVER_ADDR=my-domain 10 | set FRP_SERVER_PORT=7000 11 | set FRP_SERVER_DASHBOARD_PORT=7500 12 | set FRP_SERVER_HTTP_PORT=9090 13 | 14 | set FRP_CLIENT_DASHBOARD_IP=127.0.0.1 15 | set FRP_CLIENT_DASHBOARD_PORT=7400 16 | 17 | set HLS_PROXY_NETWORK_PROTOCOL=http 18 | set HLS_PROXY_LOCAL_IP=127.0.0.1 19 | set HLS_PROXY_LOCAL_PORT=8080 20 | set HLS_PROXY_REMOTE_SUBDOMAIN=hls-proxy 21 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/1. run hls-proxy server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set recipes_home=%~dp0..\.. 4 | 5 | call "%recipes_home%\00. generic use cases\configure port mapping\public port [9090], static public host [hls-proxy.my-domain]\[http, port 8080].bat" 6 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/2. run frp server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set HOME=%~dp0.\data\server 6 | 7 | frps -c "%HOME%\frps.ini" 8 | 9 | rem :: frps tcp listen on 0.0.0.0:7000 10 | rem :: http service listen on 0.0.0.0:9090 11 | rem :: Dashboard listen on 0.0.0.0:7500 12 | rem :: frps started successfully 13 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/3. open frp server admin dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 6 | if not exist %chrome% set chrome=chrome 7 | 8 | set dashboard_url="http://admin:admin@%FRP_SERVER_ADDR%:%FRP_SERVER_DASHBOARD_PORT%" 9 | 10 | start "dashboard" %chrome% %dashboard_url% 11 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/4. run frp client.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set HOME=%~dp0.\data\client 6 | 7 | frpc -c "%HOME%\frpc.ini" 8 | 9 | rem :: login to server success 10 | rem :: proxy added: [hls-proxy] 11 | rem :: admin server listen on 127.0.0.1:7400 12 | rem :: [hls-proxy] start proxy success 13 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/5. open frp client dashboard.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call "%~dp0.\0. env.bat" 4 | 5 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 6 | if not exist %chrome% set chrome=chrome 7 | 8 | set dashboard_url="http://admin:admin@%FRP_CLIENT_DASHBOARD_IP%:%FRP_CLIENT_DASHBOARD_PORT%" 9 | 10 | start "dashboard" %chrome% %dashboard_url% 11 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/6. play HLS stream [CBS News].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set chrome="C:\PortableApps\SRWare Iron\67.0.3500.0\IronPortable.exe" 4 | if not exist %chrome% set chrome=chrome 5 | 6 | set recipes_home=%~dp0..\.. 7 | 8 | set url="https://www.cbsnews.com/common/video/cbsn_header_prod.m3u8" 9 | set host="hls-proxy.my-domain:9090" 10 | set tls="0" 11 | 12 | call "%recipes_home%\.lib\WAN\get_video_player_url.bat" %url% %host% %tls% 13 | 14 | start "video_player" %chrome% %video_player_url% 15 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/data/client/frpc.ini: -------------------------------------------------------------------------------- 1 | [common] 2 | server_addr = {{ .Envs.FRP_SERVER_ADDR }} 3 | server_port = {{ .Envs.FRP_SERVER_PORT }} 4 | admin_addr = {{ .Envs.FRP_CLIENT_DASHBOARD_IP }} 5 | admin_port = {{ .Envs.FRP_CLIENT_DASHBOARD_PORT }} 6 | 7 | [hls-proxy] 8 | type = {{ .Envs.HLS_PROXY_NETWORK_PROTOCOL }} 9 | local_ip = {{ .Envs.HLS_PROXY_LOCAL_IP }} 10 | local_port = {{ .Envs.HLS_PROXY_LOCAL_PORT }} 11 | subdomain = {{ .Envs.HLS_PROXY_REMOTE_SUBDOMAIN }} 12 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/data/hosts: -------------------------------------------------------------------------------- 1 | # ---------------------------------------- 2 | # Windows: 3 | # C:\Windows\System32\drivers\etc\hosts 4 | # ---------------------------------------- 5 | # Linux: 6 | # /etc/hosts 7 | # ---------------------------------------- 8 | 9 | 127.0.0.1 my-domain 10 | 127.0.0.1 hls-proxy.my-domain 11 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/03. frp [http]/data/server/frps.ini: -------------------------------------------------------------------------------- 1 | [common] 2 | bind_port = {{ .Envs.FRP_SERVER_PORT }} 3 | dashboard_port = {{ .Envs.FRP_SERVER_DASHBOARD_PORT }} 4 | vhost_http_port = {{ .Envs.FRP_SERVER_HTTP_PORT }} 5 | subdomain_host = {{ .Envs.FRP_SERVER_ADDR }} 6 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/04. [hosted, ssh client] localhost.run/.gitignore: -------------------------------------------------------------------------------- 1 | data/client/.ssh/id_rsa 2 | data/client/.ssh/id_rsa.pub 3 | 4 | 1. run ssh client.sh.log 5 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/04. [hosted, ssh client] localhost.run/1. run ssh client.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 4 | HOME="${DIR}/data/client" 5 | PKEY="${HOME}/.ssh/id_rsa" 6 | LOG="${BASH_SOURCE[0]}.log" 7 | 8 | if [ ! -e "$PKEY" ]; then 9 | ssh-keygen -q -t rsa -b 2048 -N '' -f "$PKEY" 10 | fi 11 | 12 | # https://localhost.run/ 13 | ssh -i "$PKEY" -R 80:localhost:8080 localhost.run >"$LOG" 2>&1 14 | 15 | # ac964a33251f7f.localhost.run tunneled with tls termination, https://ac964a33251f7f.localhost.run 16 | -------------------------------------------------------------------------------- /.recipes/02. NAT tunnel/04. [hosted, ssh client] localhost.run/data/client/.ssh/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warren-bank/HLS-Proxy/bb4c39b96019c52781b4e7e9bb596a558cabeb6d/.recipes/02. NAT tunnel/04. [hosted, ssh client] localhost.run/data/client/.ssh/.gitkeep -------------------------------------------------------------------------------- /.recipes/03. Express.js app with custom route/01. basic usage (with v2.x workaround)/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call node index.js 4 | 5 | echo. 6 | pause 7 | -------------------------------------------------------------------------------- /.recipes/03. Express.js app with custom route/02. basic usage/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call node index.js 4 | 5 | echo. 6 | pause 7 | -------------------------------------------------------------------------------- /.recipes/03. Express.js app with custom route/03. advanced usage/send-request-to-logger.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set proxy_url="http://localhost:8080/foo/bar/baz/proxy/hello-world" 4 | 5 | curl --include %proxy_url% 6 | 7 | echo. 8 | pause 9 | -------------------------------------------------------------------------------- /.recipes/03. Express.js app with custom route/03. advanced usage/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | call node index.js 4 | 5 | echo. 6 | pause 7 | -------------------------------------------------------------------------------- /.recipes/03. Express.js app with custom route/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "03-express-js-app-with-custom-route", 3 | "private": true, 4 | "version": "1.0.0", 5 | "dependencies": { 6 | "express": "^4.18.2" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] ABC.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/abc-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/oiTgbz3SXPrK8lLOk67B/playlist.m3u8 7 | set streamID=2xabc 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] CBS.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/cbs-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/cjbq9yfp8WGvsRBkChFi/playlist.m3u8 7 | set streamID=2xcbs 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] ESPN.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/espn-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/RKUtex2CodYBuOkTGq6A/playlist.m3u8 7 | set streamID=2xespn 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] ESPN2.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/espn-2-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/Qy4A0r6jvBxeaoIpsgZW/playlist.m3u8 7 | set streamID=2xespn2 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] ESPNU.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/espnu-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/NbBqJFshMLxlU95SWiDX/playlist.m3u8 7 | set streamID=2xespnu 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] FOX.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/fox--entertainment-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/WDramgSAxuUV2pQjs9RH/playlist.m3u8 7 | set streamID=2xfox 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] HBO.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/hbo-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/6rIAHeghLaYNOscpJQW8/playlist.m3u8 7 | set streamID=hbosd 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] NBA TV.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/nba-tv-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/J0SrB4amf3YORDoMtwvs/playlist.m3u8 7 | set streamID=nbatv 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] NBC.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/nbc-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/xczPmTIQ75yiKfXZJjo6/playlist.m3u8 7 | set streamID=2xnbc 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/01. vipleague.cc/[http, port 8080] NFL Network.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.vipleague.cc/nfl-network-streaming-link-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/4ornXB7aDZHLViI6JS0b/playlist.m3u8 7 | set streamID=nflnettv 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/.channels/02. nflstream.io/[http, port 8080] 2018-08-24 Patriots vs Panthers.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem :: HLS url obtained using "WebCast-Reloaded" on webpage: 4 | rem :: https://www.nflstream.io/carolina-panthers-vs-new-england-patriots-live/stream-1 5 | 6 | set url=https://e1.livecamtv.me/zmelive/przN2abEtUVWYkSDFI3y/playlist.m3u8 7 | set streamID=2xnfl1hd~2xnfl1a 8 | set port=8080 9 | 10 | set PATH=%~dp0..\..;%PATH% 11 | 12 | seelive "%url%" "%streamID%" "%port%" 13 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/01. livecamtv.me/notes.txt: -------------------------------------------------------------------------------- 1 | observations: 2 | ============= 3 | * video streams play perfectly 4 | 5 | * "livecamtv.me" video streams need to contact an authorization server at 5 minute intervals 6 | - otherwise, Streamlink encounters a problem: 7 | [stream.hls][error] Failed to create decryptor: 8 | Unable to open URL: https://key.livecamtv.me/RKUtex2CodYBuOkTGq6A/1534542841 9 | (444 Client Error: for url: https://key.livecamtv.me/RKUtex2CodYBuOkTGq6A/1534542841) 10 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set streamlink_home=C:\PortableApps\Streamlink\0.14.2 4 | set PATH=%streamlink_home%;%PATH% 5 | -------------------------------------------------------------------------------- /.related/.recipes/01. Streamlink/notes.txt: -------------------------------------------------------------------------------- 1 | to play in VLC: 2 | =============== 3 | * Media > Open Network Stream... 4 | * Network URL: http://192.168.XXX.XXX:8080/ 5 | 6 | to play on Chromecast through VLC: 7 | ================================== 8 | * Playback > Renderer 9 | * displays list of Chromecasts found in LAN 10 | * select one 11 | -------------------------------------------------------------------------------- /.related/.recipes/02. ffmpeg/env.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set ffmpeg_home=C:\PortableApps\ffmpeg 4 | set PATH=%ffmpeg_home%;%PATH% 5 | -------------------------------------------------------------------------------- /.tests/end-to-end/echo_request_headers.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | proxy_url='http://127.0.0.1:8080' 4 | request_url='http://httpbin.org/headers' 5 | referer_url='https://example.com/videos.html' 6 | file_extension='.txt' 7 | 8 | hls_proxy_url="${proxy_url}/"$(echo -n "${request_url}|${referer_url}" | base64 --wrap=0)"$file_extension" 9 | 10 | curl -H 'x-foo: Foo' -H 'x-bar: Bar' -H 'x-baz: Baz' --silent "$hls_proxy_url" 11 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_06/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\06.17.1 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_06/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_07/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\07.10.1 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_07/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_08/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\08.17.0 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_08/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_10/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\10.14.2 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_10/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_12/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\12.13.0 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_12/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_16/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set NODE_SKIP_PLATFORM_CHECK=1 4 | set NODE_HOME=C:\PortableApps\node.js\16.14.0 5 | set PATH=%NODE_HOME%;%PATH% 6 | 7 | call "%~dp0..\..\..\..\.recipes\00. generic use cases\%~nx0" 8 | -------------------------------------------------------------------------------- /.tests/end-to-end/node_runtime_versions/node_16/copy_req_headers/[http, port 8080].bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set hlsd_opts=--copy-req-headers 4 | 5 | call "%~dp0..\%~nx0" 6 | -------------------------------------------------------------------------------- /.tests/unit/regexp_indices.js: -------------------------------------------------------------------------------- 1 | const regexp_indices = require('../../hls-proxy/regexp_indices') 2 | 3 | const str = 'foo_bar_baz' 4 | const regexp = regexp_indices.updateRegExp(new RegExp(str)) 5 | const match = regexp_indices.exec(regexp, str) 6 | 7 | console.log( 8 | (match.indices && (match.indices.length === 1) && (match.indices[0][0] === 0) && (match.indices[0][1] === str.length)) ? 'OK' : 'FAIL' 9 | ) 10 | -------------------------------------------------------------------------------- /.tests/unit/regexp_indices.log: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | OK 4 | OK 5 | OK 6 | OK 7 | -------------------------------------------------------------------------------- /hls-proxy/cookies.js: -------------------------------------------------------------------------------- 1 | const {CookieJar} = require('tough-cookie') 2 | 3 | let cookieJar = null 4 | 5 | const useCookieJar = function(){ 6 | if (!cookieJar) 7 | cookieJar = new CookieJar() 8 | } 9 | 10 | const getCookieJar = function(){ 11 | return cookieJar 12 | } 13 | 14 | module.exports = { 15 | useCookieJar, 16 | getCookieJar 17 | } 18 | -------------------------------------------------------------------------------- /hls-proxy/segment_cache_storage/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(params) { 2 | const {cache_storage, cache_storage_fs_dirpath} = params 3 | 4 | if (cache_storage) { 5 | if (cache_storage === 'memory') 6 | return require('./memory')() 7 | 8 | if ((cache_storage === 'filesystem') && cache_storage_fs_dirpath) 9 | return require('./filesystem')(cache_storage_fs_dirpath) 10 | } 11 | 12 | // default 13 | return require('./memory')() 14 | } 15 | -------------------------------------------------------------------------------- /hls-proxy/segment_cache_storage/memory/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | 3 | // async 4 | const set = async (state, blob) => { 5 | state.databuffer = blob 6 | } 7 | 8 | // async 9 | const get = async (state) => state.databuffer 10 | 11 | // async 12 | const remove = async (state) => { 13 | delete state.databuffer 14 | } 15 | 16 | return {set, get, remove} 17 | } 18 | -------------------------------------------------------------------------------- /hls-proxy/servers/cert/.bin/create_cert.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set openssl_HOME=C:\PortableApps\OpenSSL\1.1.0 4 | set PATH=%openssl_HOME%;%PATH% 5 | 6 | cd /D "%~dp0.." 7 | 8 | if exist "key.pem" del "key.pem" 9 | if exist "cert.pem" del "cert.pem" 10 | 11 | openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 36500 -config "%openssl_HOME%\openssl.cnf" 12 | 13 | echo. 14 | pause 15 | -------------------------------------------------------------------------------- /hls-proxy/servers/cert/.bin/create_cert.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cd .. 4 | 5 | if [ -e key.pem ]; then 6 | rm key.pem 7 | fi 8 | 9 | if [ -e cert.pem ]; then 10 | rm cert.pem 11 | fi 12 | 13 | openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 36500 14 | -------------------------------------------------------------------------------- /hls-proxy/servers/start_http.js: -------------------------------------------------------------------------------- 1 | const http = require('http') 2 | 3 | const start_server = function({port}) { 4 | if (!port || isNaN(port)) port = 80 5 | 6 | const server = http.createServer() 7 | 8 | server.listen(port, function () { 9 | console.log(`HTTP server is listening on port: ${port}`) 10 | }) 11 | 12 | return server 13 | } 14 | 15 | module.exports = start_server 16 | -------------------------------------------------------------------------------- /hls-proxy/url.js: -------------------------------------------------------------------------------- 1 | let parse, URL 2 | 3 | if (!parse || !URL) { 4 | try { 5 | ({parse, URL} = require('@warren-bank/url/es6-node/jsURL')); 6 | } 7 | catch(e){} 8 | } 9 | 10 | if (!parse || !URL) { 11 | try { 12 | ({parse, URL} = require('@warren-bank/url/es5-browser/jsURL')); 13 | } 14 | catch(e){} 15 | } 16 | 17 | if (!parse || !URL) { 18 | try { 19 | ({parse, URL} = require('url')); 20 | } 21 | catch(e){} 22 | } 23 | 24 | if (!parse || !URL) { 25 | throw new Error('URL class is not supported') 26 | } 27 | 28 | module.exports = { 29 | parse, 30 | URL 31 | } 32 | --------------------------------------------------------------------------------