aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vine.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-09 22:32:48 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-09 22:32:48 +0600
commit58a9f1b86404e3a6c26c7143cb408db793aa5946 (patch)
tree8fc51aa933dacd85fcd81d889b1f0d662a77e149 /youtube_dl/extractor/vine.py
parent6ac41a4ef50029fa3b0eee5083805d0133a4d1dd (diff)
downloadyoutube-dl-58a9f1b86404e3a6c26c7143cb408db793aa5946.tar.xz
[vine] Fix post data regex (Closes #5389)
Diffstat (limited to 'youtube_dl/extractor/vine.py')
-rw-r--r--youtube_dl/extractor/vine.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py
index 353791e1d..13c13152e 100644
--- a/youtube_dl/extractor/vine.py
+++ b/youtube_dl/extractor/vine.py
@@ -30,7 +30,8 @@ class VineIE(InfoExtractor):
webpage = self._download_webpage('https://vine.co/v/' + video_id, video_id)
data = json.loads(self._html_search_regex(
- r'window\.POST_DATA = { %s: ({.+?}) }' % video_id, webpage, 'vine data'))
+ r'window\.POST_DATA = { %s: ({.+?}) };\s*</script>' % video_id,
+ webpage, 'vine data'))
formats = [{
'format_id': '%(format)s-%(rate)s' % f,