From 9e7f45a42ebfa35ba016057cd9999561f865c820 Mon Sep 17 00:00:00 2001 From: chu23465 <130033130+chu23465@users.noreply.github.com> Date: Mon, 7 Apr 2025 19:40:35 +0530 Subject: [PATCH] Update README.md Small change to proxy instructions. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb88fa5..1e00751 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ I recommend [Windscribe](https://windscribe.com/). You can sign up, getting 10 G Tested so far on Amazon, AppleTVPlus, Max. ### Steps: -1. For each service, within get_tracks() function we do this below. +1. For each service, within get_tracks() function we do this below. Below is only when you are integrating a new service yourself. Set needs_proxy to True if your service needs proxy to get manifest (Ex - Netflix, Hotstar). ```python for track in tracks: track.needs_proxy = False @@ -308,10 +308,10 @@ Tested so far on Amazon, AppleTVPlus, Max. ...(other flags)... --proxy http://192.168.0.141:9766 ....... ``` - If you are using other VPNs, extract the proxy (use the browser extension to do this). It will look something like `http(s)://username:pass@host/IP`. Ex -> `https://user:pass@in-mum.prod.surfshark.com:443`. Pass it like below: + If you are using other VPNs, extract the proxy (use the browser extension to do this). It will look something like `http(s)://username:pass@host/IP:PORT`. Ex -> `https://user:pass@domain.com:443`. Pass it like below: ```bash - ...(other flags)... --proxy https://user:pass@in-mum.prod.surfshark.com:443 ....... + ...(other flags)... --proxy https://user:pass@domain.com:443 ....... ``` ## Other