1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-05 02:32:44 +01:00

Fix download error in GooglePlus

This commit is contained in:
dinesh 2014-10-11 21:10:53 +05:30
parent b7b2ca6e2b
commit 071420e136

View File

@ -64,7 +64,7 @@ def _real_extract(self, url):
webpage = self._download_webpage(video_page, video_id, 'Downloading video page')
# Extract video links all sizes
pattern = r'\d+,\d+,(\d+),"(http\://redirector\.googlevideo\.com.*?)"'
pattern = r'\d+,\d+,(\d+),"(https\://redirector\.googlevideo\.com.*?)"'
mobj = re.findall(pattern, webpage)
if len(mobj) == 0:
raise ExtractorError('Unable to extract video links')