mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-07 19:10:47 +00:00
changed video_url regex
Some older videos contain an extra properties such as 'embed' before 'type'.
This commit is contained in:
parent
755eb0320e
commit
12ef6aefa8
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ def _real_extract(self, url):
|
||||||
data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id
|
data_url = 'http://teamcoco.com/cvp/2.0/%s.xml' % video_id
|
||||||
data = self._download_webpage(data_url, video_id, 'Downloading data webpage')
|
data = self._download_webpage(data_url, video_id, 'Downloading data webpage')
|
||||||
|
|
||||||
video_url = self._html_search_regex(r'<file type="high".*?>(.*?)</file>',
|
video_url = self._html_search_regex(r'<file [^>]*type="high".*?>(.*?)</file>',
|
||||||
data, u'video URL')
|
data, u'video URL')
|
||||||
|
|
||||||
return [{
|
return [{
|
||||||
|
|
Loading…
Reference in a new issue