Browse Source

[googleplus] Fix extraction of formats

Jaime Marquínez Ferrándiz 9 years ago
parent
commit
cff551c0b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/googleplus.py

+ 1 - 1
youtube_dl/extractor/googleplus.py

@@ -61,7 +61,7 @@ class GooglePlusIE(InfoExtractor):
             'width': int(width),
             'height': int(height),
         } for width, height, video_url in re.findall(
-            r'\d+,(\d+),(\d+),"(https?://redirector\.googlevideo\.com.*?)"', webpage)]
+            r'\d+,(\d+),(\d+),"(https?://[^.]+\.googleusercontent.com.*?)"', webpage)]
         self._sort_formats(formats)
 
         return {