mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 06:45:00 +01:00
67 lines
2.3 KiB
Python
67 lines
2.3 KiB
Python
from .common import InfoExtractor
|
|
from ..utils import (
|
|
determine_ext,
|
|
int_or_none,
|
|
join_nonempty,
|
|
remove_end,
|
|
url_or_none,
|
|
)
|
|
from ..utils.traversal import traverse_obj
|
|
|
|
|
|
class YfanefaIE(InfoExtractor):
|
|
IE_NAME = 'yfanefa'
|
|
_VALID_URL = r'https?://(?:www\.)?yfanefa\.com/(?P<id>[^?#]+)'
|
|
_TESTS = [{
|
|
'url': 'https://www.yfanefa.com/record/2717',
|
|
'info_dict': {
|
|
'id': 'record-2717',
|
|
'ext': 'mp4',
|
|
'title': 'THE HALLAMSHIRE RIFLES LEAVING SHEFFIELD, 1914',
|
|
'duration': 5239,
|
|
'thumbnail': r're:https://media\.yfanefa\.com/storage/v1/file/',
|
|
},
|
|
}, {
|
|
'url': 'https://www.yfanefa.com/news/53',
|
|
'info_dict': {
|
|
'id': 'news-53',
|
|
'ext': 'mp4',
|
|
'title': 'Memory Bank: Bradford Launch',
|
|
'thumbnail': r're:https://media\.yfanefa\.com/storage/v1/file/',
|
|
},
|
|
}, {
|
|
'url': 'https://www.yfanefa.com/evaluating_nature_matters',
|
|
'info_dict': {
|
|
'id': 'evaluating_nature_matters',
|
|
'ext': 'mp4',
|
|
'title': 'Evaluating Nature Matters',
|
|
'thumbnail': r're:https://media\.yfanefa\.com/storage/v1/file/',
|
|
},
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
player_data = self._search_json(
|
|
r'iwPlayer\.options\["[\w.]+"\]\s*=', webpage, 'player options', video_id)
|
|
|
|
formats = []
|
|
video_url = join_nonempty(player_data['url'], player_data.get('signature'), delim='')
|
|
if determine_ext(video_url) == 'm3u8':
|
|
formats = self._extract_m3u8_formats(
|
|
video_url, video_id, 'mp4', m3u8_id='hls')
|
|
else:
|
|
formats = [{'url': video_url, 'ext': 'mp4'}]
|
|
|
|
return {
|
|
'id': video_id.strip('/').replace('/', '-'),
|
|
'title':
|
|
self._og_search_title(webpage, default=None)
|
|
or remove_end(self._html_extract_title(webpage), ' | Yorkshire Film Archive'),
|
|
'formats': formats,
|
|
**traverse_obj(player_data, {
|
|
'thumbnail': ('preview', {url_or_none}),
|
|
'duration': ('duration', {int_or_none}),
|
|
}),
|
|
}
|