1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
6 from .common import InfoExtractor
9 class CriterionIE(InfoExtractor):
10 _VALID_URL = r'https?://www\.criterion\.com/films/(?P<id>[0-9]+)-.+'
12 'url': 'http://www.criterion.com/films/184-le-samourai',
13 'md5': 'bc51beba55685509883a9a7830919ec3',
17 'title': 'Le Samouraï',
18 'description': 'md5:a2b4b116326558149bef81f76dcbb93f',
22 def _real_extract(self, url):
23 mobj = re.match(self._VALID_URL, url)
24 video_id = mobj.group('id')
25 webpage = self._download_webpage(url, video_id)
27 final_url = self._search_regex(
28 r'so.addVariable\("videoURL", "(.+?)"\)\;', webpage, 'video url')
29 title = self._og_search_title(webpage)
30 description = self._html_search_meta('description', webpage)
31 thumbnail = self._search_regex(
32 r'so.addVariable\("thumbnailURL", "(.+?)"\)\;',
33 webpage, 'thumbnail url')
39 'description': description,
40 'thumbnail': thumbnail,