[vine] Use _search_regex for JSON data (Closes #7254, closes #7255)

This commit is contained in:
Sergey M․ 2015-10-21 20:35:22 +06:00
parent 7308b8cb3d
commit cc449417c4
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ class VineIE(InfoExtractor):
webpage = self._download_webpage('https://vine.co/v/' + video_id, video_id)
data = self._parse_json(
self._html_search_regex(
r'window\.POST_DATA = { %s: ({.+?}) };\s*</script>' % video_id,
self._search_regex(
r'window\.POST_DATA\s*=\s*{\s*%s\s*:\s*({.+?})\s*};\s*</script>' % video_id,
webpage, 'vine data'),
video_id)