-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
http proxy support #696
Comments
The Twitch add-on is the same as the YouTube add-on, and the video streaming seems to follow the Kodi proxy settings.I hope the devs can refine the proxy support for Twitch, which would obviously solve the geo-blocking issue with Twitch. It also helps combat Internet censorship against Twitch, a world where more than a billion Internet users don't have direct access to Twitch. |
# Add hard-coded proxy here
proxies = {
'http': 'http://ip:port',
'https': 'http://ip:port',
}
response = requests.request(method=method, url=url, headers=headers,
json=json_body, data=data, verify=SSL_VERIFICATION, proxies=proxies) This modification allows Twitch add-ons to use hard-coded proxies before developers add proxy functionality. |
There hasn't been any active development of this addon in quite some time. |
@apo86 |
So far I've only done some bug fixes and never dealt with anything front end related. I have no idea how to implement a new configurable setting. Maybe if I'm super bored at some point, I'll try to figure it out, but don't count on it. |
Okay, try to look into it when I have time. Maybe we can collaborate on it. |
What Problem Does This Solve?
Love the feature from Streamlink to add a http proxy. For me this would fix the issue because Telekom a German ISP does not like twitch an many other. So if I use a VPN or a proxy everything works fine again.
Suggest a Solution (optional)
Since I don't want to use a VPN to route everything from Kodi I would love if this plugin would add support for this. I mean you could go even further and add ttv-lol support to block adds but I thibk this would probably go to far.
The text was updated successfully, but these errors were encountered: