youtube-dl

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

commit f2d9e3a370727a71b0ba8f5246c5cc3dab126dc8
parent 16e6f396b45a99b2d52770fbb3eeea7c59dc53c6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  5 Sep 2014 01:17:16 +0700

[arte.tv:+7] Allow single quotes for json vp url regexes (Closes #3676)

Diffstat:
Myoutube_dl/extractor/arte.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py @@ -78,7 +78,7 @@ class ArteTVPlus7IE(InfoExtractor): def _extract_from_webpage(self, webpage, video_id, lang): json_url = self._html_search_regex( - [r'arte_vp_url="(.*?)"', r'data-url="([^"]+)"'], + [r'arte_vp_url=["\'](.*?)["\']', r'data-url=["\']([^"]+)["\']'], webpage, 'json vp url') return self._extract_from_json_url(json_url, video_id, lang)