Update README.md

Small change to proxy instructions.
This commit is contained in:
chu23465 2025-04-07 19:40:35 +05:30 committed by GitHub
parent 73d53c3efe
commit 9e7f45a42e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -284,7 +284,7 @@ I recommend [Windscribe](https://windscribe.com/). You can sign up, getting 10 G
Tested so far on Amazon, AppleTVPlus, Max. Tested so far on Amazon, AppleTVPlus, Max.
### Steps: ### 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 ```python
for track in tracks: for track in tracks:
track.needs_proxy = False track.needs_proxy = False
@ -308,10 +308,10 @@ Tested so far on Amazon, AppleTVPlus, Max.
...(other flags)... --proxy http://192.168.0.141:9766 ....... ...(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 ```bash
...(other flags)... --proxy https://user:pass@in-mum.prod.surfshark.com:443 ....... ...(other flags)... --proxy https://user:pass@domain.com:443 .......
``` ```
## Other ## Other