youtube-dl

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

commit 4c4780c25e20d6ad281faff5d6aede3df4b58f66
parent 64f1aba8f1a6dba88e0dd0edc799fee978c7ce76
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  9 Apr 2015 22:41:41 +0600

[vine] Modernize

Diffstat:
Myoutube_dl/extractor/vine.py | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py @@ -58,9 +58,11 @@ class VineIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage('https://vine.co/v/' + video_id, video_id) - data = json.loads(self._html_search_regex( - r'window\.POST_DATA = { %s: ({.+?}) };\s*</script>' % video_id, - webpage, 'vine data')) + data = self._parse_json( + self._html_search_regex( + r'window\.POST_DATA = { %s: ({.+?}) };\s*</script>' % video_id, + webpage, 'vine data'), + video_id) formats = [{ 'format_id': '%(format)s-%(rate)s' % f,