diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2023-11-26 04:09:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 03:09:59 +0000 |
commit | 9751a457cfdb18bf99d9ee0d10e4e6a594502bbf (patch) | |
tree | 72d8f0b497ec27b3bfafc64194ec3882ee1c5a49 /yt_dlp/extractor/unscripted.py | |
parent | 5a230233d6fce06f4abd1fce0dc92b948e6f780b (diff) |
[cleanup] Remove dead extractors (#8604)
Closes #1609, Closes #3232, Closes #4763, Closes #6026, Closes #6322, Closes #7912
Authored by: seproDev
Diffstat (limited to 'yt_dlp/extractor/unscripted.py')
-rw-r--r-- | yt_dlp/extractor/unscripted.py | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/yt_dlp/extractor/unscripted.py b/yt_dlp/extractor/unscripted.py deleted file mode 100644 index 6643a71b1..000000000 --- a/yt_dlp/extractor/unscripted.py +++ /dev/null @@ -1,53 +0,0 @@ -from .common import InfoExtractor -from ..utils import parse_duration, traverse_obj - - -class UnscriptedNewsVideoIE(InfoExtractor): - _VALID_URL = r'https?://www\.unscripted\.news/videos/(?P<id>[\w-]+)' - _TESTS = [{ - 'url': 'https://www.unscripted.news/videos/a-day-at-the-farmers-protest', - 'info_dict': { - 'id': '60c0a55cd1e99b1079918a57', - 'display_id': 'a-day-at-the-farmers-protest', - 'ext': 'mp4', - 'title': 'A Day at the Farmers\' Protest', - 'description': 'md5:4b3df22747a03e8f14f746dd72190384', - 'thumbnail': 'https://s3.unscripted.news/anj2/60c0a55cd1e99b1079918a57/5f199a65-c803-4a5c-8fce-2077359c3b72.jpg', - 'duration': 2251.0, - 'series': 'Ground Reports', - } - }, { - 'url': 'https://www.unscripted.news/videos/you-get-the-politicians-you-deserve-ft-shashi-tharoor', - 'info_dict': { - 'id': '5fb3afbf18ac817d341a74d8', - 'display_id': 'you-get-the-politicians-you-deserve-ft-shashi-tharoor', - 'ext': 'mp4', - 'cast': ['Avalok Langer', 'Ashwin Mehta'], - 'thumbnail': 'https://s3.unscripted.news/anj2/5fb3afbf18ac817d341a74d8/82bd7942-4f20-4cd8-98ae-83f9e814f998.jpg', - 'description': 'md5:1e91b069238a705ca3a40f87e6f1182c', - 'duration': 1046.0, - 'series': 'Dumb Questions Only', - 'title': 'You Get The Politicians You Deserve! ft. Shashi Tharoor', - } - }] - - def _real_extract(self, url): - display_id = self._match_id(url) - webpage = self._download_webpage(url, display_id) - nextjs_data = self._search_nextjs_data(webpage, display_id)['props']['pageProps']['dataLocal'] - - # TODO: get subtitle from srt key - formats, subtitles = self._extract_m3u8_formats_and_subtitles(nextjs_data['alt_content'], display_id) - - return { - 'id': nextjs_data['_id'], - 'display_id': display_id, - 'title': nextjs_data.get('title') or self._og_search_title(webpage), - 'description': nextjs_data.get('sh_heading') or self._og_search_description(webpage), - 'formats': formats, - 'subtitles': subtitles, - 'thumbnail': self._og_search_thumbnail(webpage), - 'duration': parse_duration(nextjs_data.get('duration')), - 'series': traverse_obj(nextjs_data, ('show', 'topic')), - 'cast': traverse_obj(nextjs_data, ('cast_crew', ..., 'displayname')), - } |