youtube-dl

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

commit d3c9af84fcd1614aa920e669e1c951a6d94c373a
parent 59d206ca2d0aa77b0f739d7262e113722d5eee16
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  1 Oct 2014 20:53:58 +0700

[spankwire] Fix extraction

Diffstat:
Myoutube_dl/extractor/spankwire.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/spankwire.py b/youtube_dl/extractor/spankwire.py @@ -45,7 +45,7 @@ class SpankwireIE(InfoExtractor): r'<div\s+id="descriptionContent">([^<]+)<', webpage, 'description', fatal=False) thumbnail = self._html_search_regex( - r'playerData\.screenShot\s*=\s*"([^"]+)"', + r'playerData\.screenShot\s*=\s*["\']([^"\']+)["\']', webpage, 'thumbnail', fatal=False) uploader = self._html_search_regex( @@ -67,7 +67,7 @@ class SpankwireIE(InfoExtractor): video_urls = list(map( compat_urllib_parse.unquote, - re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*"([^"]+)', webpage))) + re.findall(r'playerData\.cdnPath[0-9]{3,}\s*=\s*["\']([^"\']+)["\']', webpage))) if webpage.find('flashvars\.encrypted = "true"') != -1: password = self._html_search_regex( r'flashvars\.video_title = "([^"]+)',