[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

View file

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