Browse Source

[googleplus] Fix extraction of formats

totalwebcasting
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 View File

@ -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 {


Loading…
Cancel
Save