summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-11-07 18:43:22 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-11-07 18:43:22 +0100
commitcff551c0b0ed8eb55c1ab63ec669c07a51aa4998 (patch)
tree1bf8ca1ae7a3a62192ac193cc3b35df3f7b42071
parent6d02b9a392d39c114d3fb58bf7965f62196ccecd (diff)
downloadyoutube-dl-cff551c0b0ed8eb55c1ab63ec669c07a51aa4998.tar.gz
youtube-dl-cff551c0b0ed8eb55c1ab63ec669c07a51aa4998.tar.xz
youtube-dl-cff551c0b0ed8eb55c1ab63ec669c07a51aa4998.zip
[googleplus] Fix extraction of formats
-rw-r--r--youtube_dl/extractor/googleplus.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/googleplus.py b/youtube_dl/extractor/googleplus.py
index fcefe54cd..731bacd67 100644
--- a/youtube_dl/extractor/googleplus.py
+++ b/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 {