aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vine.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-09 22:41:41 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-09 22:41:41 +0600
commit4c4780c25e20d6ad281faff5d6aede3df4b58f66 (patch)
tree6783d427e803774cac0597b77e87225ac8042ee0 /youtube_dl/extractor/vine.py
parent64f1aba8f1a6dba88e0dd0edc799fee978c7ce76 (diff)
downloadyoutube-dl-4c4780c25e20d6ad281faff5d6aede3df4b58f66.tar.xz
[vine] Modernize
Diffstat (limited to 'youtube_dl/extractor/vine.py')
-rw-r--r--youtube_dl/extractor/vine.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py
index a4d5af147..d4f5a991e 100644
--- 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,