mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[extractor/nebula] Fix extractor (#7156)
Closes #7017 Authored by: Lamieur, rohieb Co-authored-by: Lam <github@Lam.pl>
This commit is contained in:
parent
7f9c6a63b1
commit
3f756c8c40
1 changed files with 20 additions and 16 deletions
|
@ -3,7 +3,7 @@
|
||||||
import urllib.error
|
import urllib.error
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import ExtractorError, parse_iso8601
|
from ..utils import ExtractorError, make_archive_id, parse_iso8601, remove_start
|
||||||
|
|
||||||
_BASE_URL_RE = r'https?://(?:www\.|beta\.)?(?:watchnebula\.com|nebula\.app|nebula\.tv)'
|
_BASE_URL_RE = r'https?://(?:www\.|beta\.)?(?:watchnebula\.com|nebula\.app|nebula\.tv)'
|
||||||
|
|
||||||
|
@ -65,19 +65,20 @@ def _fetch_nebula_bearer_token(self):
|
||||||
return response['token']
|
return response['token']
|
||||||
|
|
||||||
def _fetch_video_formats(self, slug):
|
def _fetch_video_formats(self, slug):
|
||||||
stream_info = self._call_nebula_api(f'https://content.watchnebula.com/video/{slug}/stream/',
|
stream_info = self._call_nebula_api(f'https://content.api.nebula.app/video/{slug}/stream/',
|
||||||
video_id=slug,
|
video_id=slug,
|
||||||
auth_type='bearer',
|
auth_type='bearer',
|
||||||
note='Fetching video stream info')
|
note='Fetching video stream info')
|
||||||
manifest_url = stream_info['manifest']
|
manifest_url = stream_info['manifest']
|
||||||
return self._extract_m3u8_formats_and_subtitles(manifest_url, slug)
|
return self._extract_m3u8_formats_and_subtitles(manifest_url, slug, 'mp4')
|
||||||
|
|
||||||
def _build_video_info(self, episode):
|
def _build_video_info(self, episode):
|
||||||
fmts, subs = self._fetch_video_formats(episode['slug'])
|
fmts, subs = self._fetch_video_formats(episode['slug'])
|
||||||
channel_slug = episode['channel_slug']
|
channel_slug = episode['channel_slug']
|
||||||
channel_title = episode['channel_title']
|
channel_title = episode['channel_title']
|
||||||
|
zype_id = episode.get('zype_id')
|
||||||
return {
|
return {
|
||||||
'id': episode['zype_id'],
|
'id': remove_start(episode['id'], 'video_episode:'),
|
||||||
'display_id': episode['slug'],
|
'display_id': episode['slug'],
|
||||||
'formats': fmts,
|
'formats': fmts,
|
||||||
'subtitles': subs,
|
'subtitles': subs,
|
||||||
|
@ -99,6 +100,9 @@ def _build_video_info(self, episode):
|
||||||
'uploader_url': f'https://nebula.tv/{channel_slug}',
|
'uploader_url': f'https://nebula.tv/{channel_slug}',
|
||||||
'series': channel_title,
|
'series': channel_title,
|
||||||
'creator': channel_title,
|
'creator': channel_title,
|
||||||
|
'extractor_key': NebulaIE.ie_key(),
|
||||||
|
'extractor': NebulaIE.IE_NAME,
|
||||||
|
'_old_archive_ids': [make_archive_id(NebulaIE, zype_id)] if zype_id else None,
|
||||||
}
|
}
|
||||||
|
|
||||||
def _perform_login(self, username=None, password=None):
|
def _perform_login(self, username=None, password=None):
|
||||||
|
@ -113,7 +117,7 @@ class NebulaIE(NebulaBaseIE):
|
||||||
'url': 'https://nebula.tv/videos/that-time-disney-remade-beauty-and-the-beast',
|
'url': 'https://nebula.tv/videos/that-time-disney-remade-beauty-and-the-beast',
|
||||||
'md5': '14944cfee8c7beeea106320c47560efc',
|
'md5': '14944cfee8c7beeea106320c47560efc',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '5c271b40b13fd613090034fd',
|
'id': '84ed544d-4afd-4723-8cd5-2b95261f0abf',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'That Time Disney Remade Beauty and the Beast',
|
'title': 'That Time Disney Remade Beauty and the Beast',
|
||||||
'description': 'Note: this video was originally posted on YouTube with the sponsor read included. We weren’t able to remove it without reducing video quality, so it’s presented here in its original context.',
|
'description': 'Note: this video was originally posted on YouTube with the sponsor read included. We weren’t able to remove it without reducing video quality, so it’s presented here in its original context.',
|
||||||
|
@ -137,22 +141,22 @@ class NebulaIE(NebulaBaseIE):
|
||||||
'url': 'https://nebula.tv/videos/the-logistics-of-d-day-landing-craft-how-the-allies-got-ashore',
|
'url': 'https://nebula.tv/videos/the-logistics-of-d-day-landing-craft-how-the-allies-got-ashore',
|
||||||
'md5': 'd05739cf6c38c09322422f696b569c23',
|
'md5': 'd05739cf6c38c09322422f696b569c23',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '5e7e78171aaf320001fbd6be',
|
'id': '7e623145-1b44-4ca3-aa0b-ed25a247ea34',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Landing Craft - How The Allies Got Ashore',
|
'title': 'Landing Craft - How The Allies Got Ashore',
|
||||||
'description': r're:^In this episode we explore the unsung heroes of D-Day, the landing craft.',
|
'description': r're:^In this episode we explore the unsung heroes of D-Day, the landing craft.',
|
||||||
'upload_date': '20200327',
|
'upload_date': '20200327',
|
||||||
'timestamp': 1585348140,
|
'timestamp': 1585348140,
|
||||||
'channel': 'Real Engineering',
|
'channel': 'Real Engineering — The Logistics of D-Day',
|
||||||
'channel_id': 'realengineering',
|
'channel_id': 'd-day',
|
||||||
'uploader': 'Real Engineering',
|
'uploader': 'Real Engineering — The Logistics of D-Day',
|
||||||
'uploader_id': 'realengineering',
|
'uploader_id': 'd-day',
|
||||||
'series': 'Real Engineering',
|
'series': 'Real Engineering — The Logistics of D-Day',
|
||||||
'display_id': 'the-logistics-of-d-day-landing-craft-how-the-allies-got-ashore',
|
'display_id': 'the-logistics-of-d-day-landing-craft-how-the-allies-got-ashore',
|
||||||
'creator': 'Real Engineering',
|
'creator': 'Real Engineering — The Logistics of D-Day',
|
||||||
'duration': 841,
|
'duration': 841,
|
||||||
'channel_url': 'https://nebula.tv/realengineering',
|
'channel_url': 'https://nebula.tv/d-day',
|
||||||
'uploader_url': 'https://nebula.tv/realengineering',
|
'uploader_url': 'https://nebula.tv/d-day',
|
||||||
'thumbnail': r're:https://\w+\.cloudfront\.net/[\w-]+\.jpeg?.*',
|
'thumbnail': r're:https://\w+\.cloudfront\.net/[\w-]+\.jpeg?.*',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -160,7 +164,7 @@ class NebulaIE(NebulaBaseIE):
|
||||||
'url': 'https://nebula.tv/videos/money-episode-1-the-draw',
|
'url': 'https://nebula.tv/videos/money-episode-1-the-draw',
|
||||||
'md5': 'ebe28a7ad822b9ee172387d860487868',
|
'md5': 'ebe28a7ad822b9ee172387d860487868',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '5e779ebdd157bc0001d1c75a',
|
'id': 'b96c5714-9e2b-4ec3-b3f1-20f6e89cc553',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Episode 1: The Draw',
|
'title': 'Episode 1: The Draw',
|
||||||
'description': r'contains:There’s free money on offer… if the players can all work together.',
|
'description': r'contains:There’s free money on offer… if the players can all work together.',
|
||||||
|
@ -190,7 +194,7 @@ class NebulaIE(NebulaBaseIE):
|
||||||
]
|
]
|
||||||
|
|
||||||
def _fetch_video_metadata(self, slug):
|
def _fetch_video_metadata(self, slug):
|
||||||
return self._call_nebula_api(f'https://content.watchnebula.com/video/{slug}/',
|
return self._call_nebula_api(f'https://content.api.nebula.app/video/{slug}/',
|
||||||
video_id=slug,
|
video_id=slug,
|
||||||
auth_type='bearer',
|
auth_type='bearer',
|
||||||
note='Fetching video meta data')
|
note='Fetching video meta data')
|
||||||
|
|
Loading…
Reference in a new issue