mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 08:24:01 +01:00
49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
from .vidyard import VidyardBaseIE
|
|
from ..utils import ExtractorError, int_or_none
|
|
|
|
|
|
class SwearnetEpisodeIE(VidyardBaseIE):
|
|
_VALID_URL = r'https?://www\.swearnet\.com/shows/(?P<id>[\w-]+)/seasons/(?P<season_num>\d+)/episodes/(?P<episode_num>\d+)'
|
|
_TESTS = [{
|
|
'url': 'https://www.swearnet.com/shows/gettin-learnt-with-ricky/seasons/1/episodes/1',
|
|
'info_dict': {
|
|
'id': 'APKGwroXAeCmGxc0mg3sWQ',
|
|
'display_id': '232819',
|
|
'ext': 'mp4',
|
|
'episode_number': 1,
|
|
'episode': 'Episode 1',
|
|
'duration': 719,
|
|
'description': 'md5:c48ef71440ce466284c07085cd7bd761',
|
|
'season': 'Season 1',
|
|
'title': 'Episode 1 - Grilled Cheese Sammich',
|
|
'season_number': 1,
|
|
'thumbnail': 'https://cdn.vidyard.com/thumbnails/custom/0dd74f9b-388a-452e-b570-b407fb64435b_small.jpg',
|
|
},
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
display_id, season_number, episode_number = self._match_valid_url(url).group('id', 'season_num', 'episode_num')
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
try:
|
|
external_id = self._search_regex(r'externalid\s*=\s*"([^"]+)', webpage, 'externalid')
|
|
except ExtractorError:
|
|
if 'Upgrade Now' in webpage:
|
|
self.raise_login_required()
|
|
raise
|
|
|
|
video_json = self._fetch_video_json(external_id, display_id)
|
|
video_info = {
|
|
**self._process_video_json(video_json['chapters'][0], display_id),
|
|
'season_number': int_or_none(season_number),
|
|
'episode_number': int_or_none(episode_number),
|
|
}
|
|
|
|
if video_info['title'] is None:
|
|
video_info['title'] = self._html_search_meta(['og:title', 'twitter:title'], webpage)
|
|
|
|
if video_info['description'] is None:
|
|
video_info['description'] = self._html_search_meta(['og:description', 'twitter:description'], webpage)
|
|
|
|
return video_info
|