0
0
Fork 0
youtube-dl/youtube_dl/extractor/criterion.py

40 lines
1.2 KiB
Python
Raw Normal View History

# coding: utf-8
2014-07-11 21:21:32 +10:00
from __future__ import unicode_literals
2013-07-13 14:17:48 +10:00
from .common import InfoExtractor
2014-07-11 21:21:32 +10:00
2013-07-13 14:17:48 +10:00
class CriterionIE(InfoExtractor):
2016-09-08 21:29:05 +10:00
_VALID_URL = r'https?://(?:www\.)?criterion\.com/films/(?P<id>[0-9]+)-.+'
2013-07-13 14:18:03 +10:00
_TEST = {
2014-07-11 21:21:32 +10:00
'url': 'http://www.criterion.com/films/184-le-samourai',
'md5': 'bc51beba55685509883a9a7830919ec3',
'info_dict': {
'id': '184',
'ext': 'mp4',
'title': 'Le Samouraï',
'description': 'md5:a2b4b116326558149bef81f76dcbb93f',
'thumbnail': 're:^https?://.*\.jpg$',
2013-07-13 14:18:03 +10:00
}
}
2013-07-13 14:17:48 +10:00
def _real_extract(self, url):
video_id = self._match_id(url)
2013-07-13 14:17:48 +10:00
webpage = self._download_webpage(url, video_id)
2014-07-11 21:21:32 +10:00
final_url = self._search_regex(
r'so\.addVariable\("videoURL", "(.+?)"\)\;', webpage, 'video url')
2014-07-11 21:21:32 +10:00
title = self._og_search_title(webpage)
2015-10-15 00:13:53 +11:00
description = self._html_search_meta('description', webpage)
2014-07-11 21:21:32 +10:00
thumbnail = self._search_regex(
r'so\.addVariable\("thumbnailURL", "(.+?)"\)\;',
2014-07-11 21:21:32 +10:00
webpage, 'thumbnail url')
2013-07-13 14:17:48 +10:00
2014-07-11 21:21:32 +10:00
return {
'id': video_id,
'url': final_url,
'title': title,
'description': description,
'thumbnail': thumbnail,
}