diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-11-07 18:43:22 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-11-07 18:43:22 +0100 |
commit | cff551c0b0ed8eb55c1ab63ec669c07a51aa4998 (patch) | |
tree | 1bf8ca1ae7a3a62192ac193cc3b35df3f7b42071 /youtube_dl/extractor/googleplus.py | |
parent | 6d02b9a392d39c114d3fb58bf7965f62196ccecd (diff) |
[googleplus] Fix extraction of formats
Diffstat (limited to 'youtube_dl/extractor/googleplus.py')
-rw-r--r-- | youtube_dl/extractor/googleplus.py | 2 |
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 { |