mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 07:50:11 +01:00
[ie/TwitCastingUser] Fix extraction (#8650)
Closes #8653 Authored by: bashonly
This commit is contained in:
parent
deeb13eae8
commit
ff2fde1b8f
@ -289,8 +289,7 @@ def _entries(self, uploader_id):
|
||||
webpage = self._download_webpage(
|
||||
next_url, uploader_id, query={'filter': 'watchable'}, note='Downloading page %d' % page_num)
|
||||
matches = re.finditer(
|
||||
r'''(?isx)<a\s+class="tw-movie-thumbnail"\s*href="(?P<url>/[^/]+/movie/\d+)"\s*>.+?</a>''',
|
||||
webpage)
|
||||
r'(?s)<a\s+class="tw-movie-thumbnail2"\s+href="(?P<url>/[^/"]+/movie/\d+)"', webpage)
|
||||
for mobj in matches:
|
||||
yield self.url_result(urljoin(base_url, mobj.group('url')))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user