Fix download error in GooglePlus
[youtube-dl] / youtube_dl / extractor / googleplus.py
index 07d994b448040fb80912593b9cdae4ac66e63bbb..1ab5e92608ed1971d535d9f2d3a947bdcabe18b6 100644 (file)
@@ -64,7 +64,7 @@ class GooglePlusIE(InfoExtractor):
         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')