1 from __future__ import unicode_literals
3 from .common import InfoExtractor
4 from ..utils import parse_duration
7 class HistoricFilmsIE(InfoExtractor):
8 _VALID_URL = r'https?://(?:www\.)?historicfilms\.com/(?:tapes/|play)(?P<id>\d+)'
10 'url': 'http://www.historicfilms.com/tapes/4728',
11 'md5': 'd4a437aec45d8d796a38a215db064e9a',
15 'title': 'Historic Films: GP-7',
16 'description': 'md5:1a86a0f3ac54024e419aba97210d959a',
17 'thumbnail': 're:^https?://.*\.jpg$',
22 def _real_extract(self, url):
23 video_id = self._match_id(url)
25 webpage = self._download_webpage(url, video_id)
27 tape_id = self._search_regex(
28 [r'class="tapeId"[^>]*>([^<]+)<', r'tapeId\s*:\s*"([^"]+)"'],
31 title = self._og_search_title(webpage)
32 description = self._og_search_description(webpage)
33 thumbnail = self._html_search_meta(
34 'thumbnailUrl', webpage, 'thumbnails') or self._og_search_thumbnail(webpage)
35 duration = parse_duration(self._html_search_meta(
36 'duration', webpage, 'duration'))
38 video_url = 'http://www.historicfilms.com/video/%s_%s_web.mov' % (tape_id, video_id)
44 'description': description,
45 'thumbnail': thumbnail,