mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[glide] Fix extraction (Closes #9141)
This commit is contained in:
parent
7ebc36900d
commit
4a121d29bb
@ -23,8 +23,9 @@ def _real_extract(self, url):
|
|||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
title = self._html_search_regex(
|
title = self._html_search_regex(
|
||||||
r'<title>(.*?)</title>', webpage, 'title')
|
r'<title>(.*?)</title>', webpage, 'title')
|
||||||
video_url = self.http_scheme() + self._search_regex(
|
video_url = self._proto_relative_url(self._search_regex(
|
||||||
r'<source src="(.*?)" type="video/mp4">', webpage, 'video URL')
|
r'<source[^>]+src=(["\'])(?P<url>.+?)\1',
|
||||||
|
webpage, 'video URL', group='url'), self.http_scheme())
|
||||||
thumbnail_url = self._search_regex(
|
thumbnail_url = self._search_regex(
|
||||||
r'<img id="video-thumbnail" src="(.*?)"',
|
r'<img id="video-thumbnail" src="(.*?)"',
|
||||||
webpage, 'thumbnail url', fatal=False)
|
webpage, 'thumbnail url', fatal=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user