youtube-dl

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

commit 376817c6d48b0915502e687655e266d80cb45a7a
parent 7fde87c77da41f24faf34b37f5d05c029ac23d4f
Author: Sergey M <dstftw@gmail.com>
Date:   Tue,  3 Mar 2015 21:32:13 +0600

Merge pull request #5115 from chaos33/youporn-json

fix youporn extractor's json search regex
Diffstat:
Myoutube_dl/extractor/youporn.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/youporn.py b/youtube_dl/extractor/youporn.py @@ -47,7 +47,7 @@ class YouPornIE(InfoExtractor): # Get JSON parameters json_params = self._search_regex( - r'var currentVideo = new Video\((.*)\)[,;]', + r'var videoJason = (.*)[,;]', webpage, 'JSON parameters') try: params = json.loads(json_params)