Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
source-address not working as expected? #20670
Comments
|
The syntax seems fine, can you pls tell what am I missing here? |
|
it's |
|
These are command line options not python API options. |
|
OK, go it. However, I guess both some should be in harmony for ease of use and clear understanding. |
|
That's technically impossible since not all options have the same meaning. |

Please follow the guide below
xinto all the boxes [ ] relevant to your issue (like this:[x])Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2019.04.07. If it's not, read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
Since youtube was rate limiting my server ip, I got new ip allocated from my web host and added it to
eth0usingip addr add xx.xx.xx.YYY/24 dev eth0, I can see both the ip's when usingip addrcommand.inet xx.xxx.xxx.xxx/24 brd xx.xxx.xxx.xxx scope global eth0 valid_lft forever preferred_lft forever inet xx.xxx.xxx.YYY/24 scope global secondary eth0 valid_lft forever preferred_lft foreverTo make use of the new ip address, I used
'source-address':source_ip,in my python script but the resulting url from youtube still has my older IP address.What am I missing here?