Merge pull request #7045 from remitamine/ign
[youtube-dl] / youtube_dl / extractor / criterion.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7
8
9 class CriterionIE(InfoExtractor):
10     _VALID_URL = r'https?://www\.criterion\.com/films/(?P<id>[0-9]+)-.+'
11     _TEST = {
12         'url': 'http://www.criterion.com/films/184-le-samourai',
13         'md5': 'bc51beba55685509883a9a7830919ec3',
14         'info_dict': {
15             'id': '184',
16             'ext': 'mp4',
17             'title': 'Le Samouraï',
18             'description': 'md5:a2b4b116326558149bef81f76dcbb93f',
19         }
20     }
21
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)
26
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')
34
35         return {
36             'id': video_id,
37             'url': final_url,
38             'title': title,
39             'description': description,
40             'thumbnail': thumbnail,
41         }