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.
Vimeo review IE with React #10900
Vimeo review IE with React #10900
Comments
Now Vimeo Review videos uses React. Thanks @davekaro for analyzing the problem!
|
Fixed. Thanks for analyzing the problem. That's definitely helpful! |
|
Oh wow, thanks for the quick fix! It works great. |
What is the purpose of your issue?
The
VimeoReviewIE(https://github.com/rg3/youtube-dl/blob/55642487f072565bea3b2826b836a1a3159a3807/youtube_dl/extractor/vimeo.py#L800) appears to have stopped working recently. Here is an exampleNote that you can visit the vimeo URL and download the video with no password. The issue is (I think) that vimeo recently updated this webpage to be a React app. So, if you look at the HTML for the page, it's mostly empty until the React app loads. I debugged youtube-dl myself and at line https://github.com/rg3/youtube-dl/blob/55642487f072565bea3b2826b836a1a3159a3807/youtube_dl/extractor/vimeo.py#L846 - the
webpagevariable only showed the HTML without the rendered HTML from React. So, theconfig_urlwas blank, even though in the browser it is there (after React loads).Do any other extractors require JavaScript to work? How can we add JavaScript support to the
VimeoReviewIE?