projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ac41a4
)
[vine] Fix post data regex (Closes #5389)
author
Sergey M․
<dstftw@gmail.com>
Thu, 9 Apr 2015 16:32:48 +0000
(22:32 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Thu, 9 Apr 2015 16:32:48 +0000
(22:32 +0600)
youtube_dl/extractor/vine.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/vine.py
b/youtube_dl/extractor/vine.py
index 353791e1dae6641e397c529b9e753624c76f937d..13c13152e91ad15297af55f5099e6d181dd106d2 100644
(file)
--- 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,