mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-01 06:21:09 +01:00
154 lines
6.2 KiB
Python
154 lines
6.2 KiB
Python
from .common import InfoExtractor
|
|
from ..utils import (
|
|
float_or_none,
|
|
int_or_none,
|
|
strip_or_none,
|
|
traverse_obj,
|
|
url_or_none,
|
|
urlhandle_detect_ext,
|
|
)
|
|
|
|
|
|
class NZOnScreenIE(InfoExtractor):
|
|
_VALID_URL = r'https?://www\.nzonscreen\.com/title/(?P<id>[^/?#]+)/?(?!series)'
|
|
_TESTS = [{
|
|
'url': 'https://www.nzonscreen.com/title/shoop-shoop-diddy-wop-cumma-cumma-wang-dang-1982',
|
|
'info_dict': {
|
|
'id': '726ed6585c6bfb30',
|
|
'ext': 'mp4',
|
|
'format_id': 'hi',
|
|
'height': 480,
|
|
'width': 640,
|
|
'display_id': 'shoop-shoop-diddy-wop-cumma-cumma-wang-dang-1982',
|
|
'title': 'Monte Video - "Shoop Shoop, Diddy Wop"',
|
|
'description': 'Monte Video - "Shoop Shoop, Diddy Wop"',
|
|
'alt_title': 'Shoop Shoop Diddy Wop Cumma Cumma Wang Dang',
|
|
'thumbnail': r're:https://www\.nzonscreen\.com/content/images/.+\.jpg',
|
|
'duration': 158,
|
|
},
|
|
'params': {'skip_download': 'm3u8'},
|
|
}, {
|
|
'url': 'https://www.nzonscreen.com/title/shes-a-mod-1964?collection=best-of-the-60s',
|
|
'info_dict': {
|
|
'id': '3dbe709ff03c36f1',
|
|
'ext': 'mp4',
|
|
'format_id': 'hi',
|
|
'height': 480,
|
|
'width': 640,
|
|
'display_id': 'shes-a-mod-1964',
|
|
'title': 'Ray Columbus - \'She\'s A Mod\'',
|
|
'description': 'Ray Columbus - \'She\'s A Mod\'',
|
|
'alt_title': 'She\'s a Mod',
|
|
'thumbnail': r're:https://www\.nzonscreen\.com/content/images/.+\.jpg',
|
|
'duration': 130,
|
|
},
|
|
'params': {'skip_download': 'm3u8'},
|
|
}, {
|
|
'url': 'https://www.nzonscreen.com/title/puha-and-pakeha-1968/overview',
|
|
'info_dict': {
|
|
'id': 'f86342544385ad8a',
|
|
'ext': 'mp4',
|
|
'format_id': 'hi',
|
|
'height': 540,
|
|
'width': 718,
|
|
'display_id': 'puha-and-pakeha-1968',
|
|
'title': 'Looking At New Zealand - Puha and Pakeha',
|
|
'alt_title': 'Looking at New Zealand - \'Pūhā and Pākehā\'',
|
|
'description': 'An excerpt from this television programme.',
|
|
'duration': 212,
|
|
'thumbnail': r're:https://www\.nzonscreen\.com/content/images/.+\.jpg',
|
|
},
|
|
'params': {'skip_download': 'm3u8'},
|
|
}, {
|
|
'url': 'https://www.nzonscreen.com/title/flatmates-episode-one-1997',
|
|
'playlist': [{
|
|
'info_dict': {
|
|
'id': '8f4941d243e42210',
|
|
'ext': 'mp4',
|
|
'format_id': 'hd',
|
|
'height': 574,
|
|
'width': 740,
|
|
'title': 'Flatmates ep 1',
|
|
'display_id': 'flatmates-episode-one-1997',
|
|
'thumbnail': 'https://www.nzonscreen.com/content/images/0018/7894/Flatmates-key-image.jpg?v=1353474747',
|
|
'duration': 1355.0,
|
|
'description': 'Episode 1',
|
|
},
|
|
}],
|
|
'info_dict': {
|
|
'id': 'flatmates-episode-one-1997',
|
|
'title': 'Flatmates - 1, First Episode',
|
|
},
|
|
'playlist_count': 5,
|
|
}, {
|
|
'url': 'https://www.nzonscreen.com/title/reluctant-hero-2008',
|
|
'info_dict': {
|
|
'id': '847f5c91af65d44b',
|
|
'ext': 'mp4',
|
|
'format_id': 'hi',
|
|
'height': 360,
|
|
'width': 640,
|
|
'subtitles': {
|
|
'en': [{'ext': 'SRT', 'data': 'md5:c2469f71020a32e55e228b532ded908f'}],
|
|
},
|
|
'title': 'Reluctant Hero (clip 1)',
|
|
'description': 'Part one of four from this full length documentary.',
|
|
'display_id': 'reluctant-hero-2008',
|
|
'duration': 1108.0,
|
|
'thumbnail': r're:https://www\.nzonscreen\.com/content/images/.+\.jpg',
|
|
},
|
|
'params': {'writesubtitles': True},
|
|
}]
|
|
|
|
def _extract_formats(self, playlist):
|
|
formats = []
|
|
for quality, (id_, url) in enumerate(traverse_obj(
|
|
playlist, ('h264', {'lo': 'lo_res', 'hi': 'hi_res', 'hd': 'hd_res'}), expected_type=url_or_none).items()):
|
|
if traverse_obj(playlist, ('h264', f'{id_}_res_mb', {float_or_none})):
|
|
formats.append({
|
|
'url': url,
|
|
'format_id': id_,
|
|
'ext': 'mp4',
|
|
'quality': quality,
|
|
'filesize_approx': float_or_none(traverse_obj(playlist, ('h264', f'{id_}_res_mb')), invscale=1024**2),
|
|
})
|
|
if formats:
|
|
formats[-1].update(traverse_obj(playlist, {
|
|
'height': ('height', {int_or_none}),
|
|
'width': ('width', {int_or_none}),
|
|
}))
|
|
return formats
|
|
|
|
def _get_subtitles(self, playinfo, video_id):
|
|
if caption := traverse_obj(playinfo, ('h264', 'caption_url')):
|
|
subtitle, urlh = self._download_webpage_handle(
|
|
'https://www.nzonscreen.com' + caption, video_id, 'Downloading subtitles')
|
|
if subtitle:
|
|
return {'en': [{'ext': urlhandle_detect_ext(urlh), 'data': subtitle}]}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, video_id)
|
|
title = strip_or_none((
|
|
self._html_extract_title(webpage, default=None)
|
|
or self._og_search_title(webpage)).rsplit('|', 2)[0])
|
|
playlist = self._download_json(
|
|
f'https://www.nzonscreen.com/html5/video_data/{video_id}', video_id, 'Downloading media data')
|
|
|
|
return self.playlist_result([{
|
|
'alt_title': title if len(playlist) == 1 else None,
|
|
'display_id': video_id,
|
|
'http_headers': {
|
|
'Referer': 'https://www.nzonscreen.com/',
|
|
'Origin': 'https://www.nzonscreen.com/',
|
|
},
|
|
'subtitles': self.extract_subtitles(playinfo, video_id),
|
|
**traverse_obj(playinfo, {
|
|
'formats': {self._extract_formats},
|
|
'id': 'uuid',
|
|
'title': ('label', {strip_or_none}),
|
|
'description': ('description', {strip_or_none}),
|
|
'thumbnail': ('thumbnail', 'path'),
|
|
'duration': ('duration', {float_or_none}),
|
|
}),
|
|
} for playinfo in playlist], video_id, title)
|