diff options
author | Jesús <heckyel@hyperbola.info> | 2022-02-18 16:58:38 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-02-18 16:58:38 -0500 |
commit | c7a54bcfbd27dde89c6267b42da7de8ea5625be1 (patch) | |
tree | 671b2b7ffe3f976952836dbfe6ee53bf33971e3a /yt_dlp/extractor/twitcasting.py | |
parent | b6d1ccad21d790c38605be2966ad17e92f1186d7 (diff) | |
parent | ed66a17ef0b18159dda901f0122520c25ea95d6b (diff) | |
download | hypervideo-pre-c7a54bcfbd27dde89c6267b42da7de8ea5625be1.tar.lz hypervideo-pre-c7a54bcfbd27dde89c6267b42da7de8ea5625be1.tar.xz hypervideo-pre-c7a54bcfbd27dde89c6267b42da7de8ea5625be1.zip |
updated from upstream | 18/02/2022 at 16:58
Diffstat (limited to 'yt_dlp/extractor/twitcasting.py')
-rw-r--r-- | yt_dlp/extractor/twitcasting.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/yt_dlp/extractor/twitcasting.py b/yt_dlp/extractor/twitcasting.py index 98ef330cb..08222df95 100644 --- a/yt_dlp/extractor/twitcasting.py +++ b/yt_dlp/extractor/twitcasting.py @@ -221,6 +221,17 @@ class TwitCastingLiveIE(InfoExtractor): r'tw-sound-flag-open-link" data-id="(\d+)" style=',), webpage, 'current live ID', default=None) if not current_live: + # fetch unfiltered /show to find running livestreams; we can't get ID of the password-protected livestream above + webpage = self._download_webpage( + f'https://twitcasting.tv/{uploader_id}/show/', uploader_id, + note='Downloading live history') + is_live = self._search_regex(r'(?s)(<span\s*class="tw-movie-thumbnail-badge"\s*data-status="live">\s*LIVE)', webpage, 'is live?', default=None) + if is_live: + # get the first live; running live is always at the first + current_live = self._search_regex( + r'(?s)<a\s+class="tw-movie-thumbnail"\s*href="/[^/]+/movie/(?P<video_id>\d+)"\s*>.+?</a>', + webpage, 'current live ID 2', default=None, group='video_id') + if not current_live: raise ExtractorError('The user is not currently live') return self.url_result('https://twitcasting.tv/%s/movie/%s' % (uploader_id, current_live)) |