Browse Source

[vine] Fix post data regex (Closes #5389)

totalwebcasting
Sergey M․ 10 years ago
parent
commit
58a9f1b864
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/vine.py

+ 2
- 1
youtube_dl/extractor/vine.py View File

@ -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,


Loading…
Cancel
Save