Is it possible to host this and access it on my browser? #1018
-
My work laptop blocks twitch, I was wondering since this was built with node could it just run as a web app and I can host it on my server? (I wouldn't just use this to get around my work laptop, this app is also just really nice) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
found out vlc has a web view, |
Beta Was this translation helpful? Give feedback.
-
I suggest you take a look at the project's readme and read again what this application actually is and what it does. None of your questions make any sense. This is the Streamlink Twitch GUI project, which is an NW.js (Chromium+NodeJS) based web-browser for Twitch.tv on Linux/macOS/Windows, and a launcher for the Python-based Streamlink application. Streamlink Twitch GUI has nothing to do with watching streams itself. This is done by Streamlink. If you want to bypass network restrictions on your local machine, then just use a proxy/VPN. Simple as that. If you already own a server, then this should be trivial. When using OpenSSH, you can locally create a socks5 tunnel to your server and use that via Streamlink like this $ ssh -D $PORTNUMBER -NTCqf "$USER@$SSHSERVER"
$ streamlink --http-proxy "socks5h://localhost:$PORTNUMBER" twitch.tv/... best as well as in Streamlink Twitch GUI via the $ streamlink-twitch-gui "--proxy-server=socks5://localhost:$PORTNUMBER" Set the Good luck. |
Beta Was this translation helpful? Give feedback.
-
Ah thank you, sorry I'm not the smartest, so my understanding probably isn't very good, I thought since its built with HTML, JS, CSS as well as Chromium there may be a way to just have it so I could access the GUI on my browser The laptop I'm using is super restrictive (SSH disabled) and its forced to already use a specific VPN, I can access my server through the browser so I thought maybe I could get streamlink gui working |
Beta Was this translation helpful? Give feedback.
I suggest you take a look at the project's readme and read again what this application actually is and what it does. None of your questions make any sense. This is the Streamlink Twitch GUI project, which is an NW.js (Chromium+NodeJS) based web-browser for Twitch.tv on Linux/macOS/Windows, and a launcher for the Python-based Streamlink application. Streamlink Twitch GUI has nothing to do with watching streams itself. This is done by Streamlink.
If you want to bypass network restrictions on your local machine, then just use a proxy/VPN. Simple as that. If you already own a server, then this should be trivial.
When using OpenSSH, you can locally create a socks5 tunnel to your server and use…