- Acquire ze Python: <https://www.python.org/downloads/release/python-381/
- Install ze Python to thy place of liking, make sure to add it to PATH.
- Acquire ze Git: https://git-scm.com/downloads
- Install ze Git to thy place of liking, make sure to add it to PATH.
- Acquire ze MPV: https://sourceforge.net/projects/mpv-player-windows/files/
- Extract ze MPV to thy place of liking, and run ze installer/mpv-install.bat as Admiral.
- Launch ze Commander Console and spell ze words:
pip install --user -U git+https://github.com/bastimeyer/streamlink.git@plugins/twitch/low-latency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # setup proxmox server with mDNS so that you can reach out via <hostname> and <hostname>.local | |
| apt install --yes systemd-resolved avahi-daemon | |
| mkdir /etc/systemd/resolved.conf.d | |
| cat <<EOF> /etc/systemd/resolved.conf.d/override.conf | |
| [Resolve] | |
| DNS=8.8.8.8 8.8.4.4 | |
| MulticastDNS=yes | |
| LLMNR=yes |
