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.
francetvinfo downloader not working #6145
Comments
|
This issue will be fixed in the next version. Thanks for the report. |
|
Thanks for this wonderful utility and the prompt fix! |
I tried to download http://www.francetvinfo.fr/societe/larguez-les-amarres-le-cobaturage-se-developpe_980101.html and it did not work. I put breakpoints in the debugger on youtube-dl running with this URL and found out that the daily motion URL pattern has slightly changed:
_VALID_URL = r'http://api.dmcloud.net/embed/[^/]+/(?P[^/?]+)'
should now be:
_VALID_URL = r'http://api.dmcloud.net/player/embed/[^/]+/(?P[^/?]+)'
(note the additional "/player" path element in the URL). With this change, I was able to download that video.