youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit afe08e0d4a8ae918ad6e5beb56ce2bdba021be88
parent b7b2ca6e2b28454fdf50bfa8febad19f29af6747
Author: Sergey M <dstftw@gmail.com>
Date:   Sun, 12 Oct 2014 00:48:58 +0700

Merge pull request #3924 from Dineshs91/googleplus-fix

Fix download error in GooglePlus
Diffstat:
Myoutube_dl/extractor/googleplus.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/googleplus.py b/youtube_dl/extractor/googleplus.py @@ -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')