youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 09670d5ba4f98e195837b9665205f0cfe3b0c80b
parent 350c9481336ac981eadc982b67ccdbc7e28ca0e3
Author: Sergey M <dstftw@gmail.com>
Date:   Sat, 17 Oct 2015 22:39:17 +0600

Merge pull request #7209 from lalinsky/vimeo-new-page

Extract config URL from (new?) React-based Vimeo's page
Diffstat:
Myoutube_dl/extractor/vimeo.py | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py @@ -286,7 +286,14 @@ class VimeoIE(VimeoBaseInfoExtractor): try: try: config_url = self._html_search_regex( - r' data-config-url="(.+?)"', webpage, 'config URL') + r' data-config-url="(.+?)"', webpage, + 'config URL', default=None) + if not config_url: + # New react-based page + vimeo_clip_page_config = self._search_regex( + r'vimeo\.clip_page_config\s*=\s*({.+?});', webpage, + 'vimeo clip page config') + config_url = self._parse_json(vimeo_clip_page_config, video_id)['player']['config_url'] config_json = self._download_webpage(config_url, video_id) config = json.loads(config_json) except RegexNotFoundError: