mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-18 06:43:06 +01:00
[ie/dropout] Fix extraction (#12102)
Closes #12103 Authored by: bashonly
This commit is contained in:
parent
bbc7591d3b
commit
1643686104
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ class DropoutIE(InfoExtractor):
|
|||
self.raise_login_required(method='any')
|
||||
raise ExtractorError(login_err, expected=True)
|
||||
|
||||
embed_url = self._search_regex(r'embed_url:\s*["\'](.+?)["\']', webpage, 'embed url')
|
||||
embed_url = self._html_search_regex(r'embed_url:\s*["\'](.+?)["\']', webpage, 'embed url')
|
||||
thumbnail = self._og_search_thumbnail(webpage)
|
||||
watch_info = get_element_by_id('watch-info', webpage) or ''
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue