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.
Running youtube-dl on a server #248
Comments
|
This depends on the video service you're downloading from. In particular, youtube is known to require extractor (i.e. youtube-dl) and downloader to be in the same /24 IPv4 network. Many video services (youtube included) also require cookies, and may require the same User-Agent string and other characteristics. I think you have options here:
I'm marking this issue as closed as I don't think there is anything youtube-dl can do here (apart from clearly documenting one needs to transfer cookies and such). This doesn't mean we can't discuss it; I'll reopen the issue once there is a specific problem with youtube-dl, or a problem that can't be solved by one of the above setups. |
|
Hi Philipp, thanks for taking time to respond and confirming my suspicion that mfg Jasper On 15 December 2011 14:03, Philipp Hagemeister <
|
|
@jasperamorgan Did you manage to solve this issue? |
I'm writing a bookmarking tool to create playlists of online video which can be played from local media players.
For Youtube videos I am extracting the actual video URLs using Youtube-dl running on a server which get passed to the media player.
This works great running in a local development environment but when the URL is extracted from the production server (running on EC2), I get a 403 error. (BTW, as per issue #41 I'm passing the cookie to the media player which works fine.)
Could it be an issue that the URL is being extracted and then used on machines running in different networks?