diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2025-01-15 20:40:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 02:40:13 +0000 |
commit | 164368610456e2d96b279f8b120dea08f7b1d74f (patch) | |
tree | 366e0af1800b124e9076d0cb887afd2b3391e880 | |
parent | bbc7591d3bb650f96cd1f1584055888cc919f14a (diff) |
[ie/dropout] Fix extraction (#12102)
Closes #12103
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/dropout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/dropout.py b/yt_dlp/extractor/dropout.py index 7e97c4d40..a0d8aacdb 100644 --- a/yt_dlp/extractor/dropout.py +++ b/yt_dlp/extractor/dropout.py @@ -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 '' |