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.
Make sure you are using the latest version: run
youtube-dl --versionand ensure your version is 2018.09.10. 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?
The following sections concretize particular purposed issues, you can erase any section (the contents between triple ---) not applicable to your issue
Description of your issue, suggested solution and other information
I would like to download live videos from the ITF tennis page: http://live.itftennis.com/en/live-streams/
Right now, for instance, the following live stream is online: http://live.itftennis.com/en/live-streams/video.php?vid=15626692
youtube-dl does not support the page right now, so the typical procedure yields an error:
As a next step, I tracked down the URL to the manifest file via my browser's dev tools. The URL is
http://live.itftennis.com/en/live-streams/video.php?vid=15626692.Hence, I tried the following statement:
If I download the manifest file via the browser by entering the URL in the address bar, an XML file is downloaded. The XML file looks like this.
The following ffmpeg command works and records the stream:
The best case would be that youtube-dl supports this page out of the box. I think it cannot be that difficult, because the above
ffmpegcommand already works. So somehow youtube-dl should corrreclty find the manifest file and then pass it to ffmpeg. The next best case would be that youtube-dl would support this page by using the manifest file url.To reproduce the issue, a live stream needs to be running. You can find the URL of a live stream by visiting the page http://live.itftennis.com/en/live-streams/ and then choosing one of the live streams linked at the top (if there are any). The url should look like this: http://live.itftennis.com/en/live-streams/video.php?vid=15626692
Thank you very much!