mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
86e5f3ed2e
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
from .common import InfoExtractor
|
|
from ..utils import parse_duration
|
|
|
|
|
|
class HistoricFilmsIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?historicfilms\.com/(?:tapes/|play)(?P<id>\d+)'
|
|
_TEST = {
|
|
'url': 'http://www.historicfilms.com/tapes/4728',
|
|
'md5': 'd4a437aec45d8d796a38a215db064e9a',
|
|
'info_dict': {
|
|
'id': '4728',
|
|
'ext': 'mov',
|
|
'title': 'Historic Films: GP-7',
|
|
'description': 'md5:1a86a0f3ac54024e419aba97210d959a',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
'duration': 2096,
|
|
},
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
tape_id = self._search_regex(
|
|
[r'class="tapeId"[^>]*>([^<]+)<', r'tapeId\s*:\s*"([^"]+)"'],
|
|
webpage, 'tape id')
|
|
|
|
title = self._og_search_title(webpage)
|
|
description = self._og_search_description(webpage)
|
|
thumbnail = self._html_search_meta(
|
|
'thumbnailUrl', webpage, 'thumbnails') or self._og_search_thumbnail(webpage)
|
|
duration = parse_duration(self._html_search_meta(
|
|
'duration', webpage, 'duration'))
|
|
|
|
video_url = 'http://www.historicfilms.com/video/%s_%s_web.mov' % (tape_id, video_id)
|
|
|
|
return {
|
|
'id': video_id,
|
|
'url': video_url,
|
|
'title': title,
|
|
'description': description,
|
|
'thumbnail': thumbnail,
|
|
'duration': duration,
|
|
}
|