youtube-dl

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

commit cc449417c4b3835c31f89e47a5e08e0f0c42ac5a
parent 7308b8cb3df5a2df0a86e8050c83b951004a0aca
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 21 Oct 2015 20:35:22 +0600

[vine] Use _search_regex for JSON data (Closes #7254, closes #7255)

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

diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py @@ -85,8 +85,8 @@ class VineIE(InfoExtractor): webpage = self._download_webpage('https://vine.co/v/' + video_id, video_id) data = self._parse_json( - self._html_search_regex( - r'window\.POST_DATA = { %s: ({.+?}) };\s*</script>' % video_id, + self._search_regex( + r'window\.POST_DATA\s*=\s*{\s*%s\s*:\s*({.+?})\s*};\s*</script>' % video_id, webpage, 'vine data'), video_id)