[ie/TwitCastingUser] Fix extraction (#8650)

Closes #8653
Authored by: bashonly
pull/8677/head
bashonly 6 months ago committed by GitHub
parent deeb13eae8
commit ff2fde1b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -289,8 +289,7 @@ class TwitCastingUserIE(InfoExtractor):
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…
Cancel
Save