from .common import InfoExtractor from ..utils import ( traverse_obj, float_or_none, int_or_none ) class CallinIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?callin\.com/(episode)/(?P[-a-zA-Z]+)' _TESTS = [{ 'url': 'https://www.callin.com/episode/the-title-ix-regime-and-the-long-march-through-EBfXYSrsjc', 'info_dict': { 'id': '218b979630a35ead12c6fd096f2996c56c37e4d0dc1f6dc0feada32dcf7b31cd', 'title': 'The Title IX Regime and the Long March Through and Beyond the Institutions', 'ext': 'ts', 'display_id': 'the-title-ix-regime-and-the-long-march-through-EBfXYSrsjc', 'thumbnail': 're:https://.+\\.png', 'description': 'First episode', 'uploader': 'Wesley Yang', 'timestamp': 1639404128.65, 'upload_date': '20211213', 'uploader_id': 'wesyang', 'uploader_url': 'http://wesleyyang.substack.com', 'channel': 'Conversations in Year Zero', 'channel_id': '436d1f82ddeb30cd2306ea9156044d8d2cfdc3f1f1552d245117a42173e78553', 'channel_url': 'https://callin.com/show/conversations-in-year-zero-oJNllRFSfx', 'duration': 9951.936, 'view_count': int, 'categories': ['News & Politics', 'History', 'Technology'], 'cast': ['Wesley Yang', 'KC Johnson', 'Gabi Abramovich'], 'series': 'Conversations in Year Zero', 'series_id': '436d1f82ddeb30cd2306ea9156044d8d2cfdc3f1f1552d245117a42173e78553', 'episode': 'The Title IX Regime and the Long March Through and Beyond the Institutions', 'episode_number': 1, 'episode_id': '218b979630a35ead12c6fd096f2996c56c37e4d0dc1f6dc0feada32dcf7b31cd' } }] def try_get_user_name(self, d): names = [d.get(n) for n in ('first', 'last')] if None in names: return next((n for n in names if n), default=None) return ' '.join(names) def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) next_data = self._search_nextjs_data(webpage, display_id) episode = next_data['props']['pageProps']['episode'] id = episode['id'] title = episode.get('title') or self._generic_title('', webpage) url = episode['m3u8'] formats = self._extract_m3u8_formats(url, display_id, ext='ts') show = traverse_obj(episode, ('show', 'title')) show_id = traverse_obj(episode, ('show', 'id')) show_json = None app_slug = (self._html_search_regex( '