commit: aa6b734e02b8c3dc8244a8cd8857e80c7c2953d6
parent 73b57f0ccbae1506304237ef836e70763c23d38f
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Sat, 13 Jul 2013 21:45:33 +0200
[instagram] really fix uploader_id detection (Fixes #1038)
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/youtube_dl/extractor/instagram.py b/youtube_dl/extractor/instagram.py
@@ -22,8 +22,9 @@ class InstagramIE(InfoExtractor):
r'<title>(.+?)</title>',
webpage, u'title', flags=re.DOTALL)
title = re.sub(u'(?: *\(Videos?\))? \u2022 Instagram$', '', html_title).strip()
- uploader_id = self._html_search_regex(r'<div class="media-user" id="media_user"><h2><a href="[^"]*">([^<]*)</a></h2>',
- webpage, u'uploader name', fatal=False)
+ uploader_id = self._html_search_regex(
+ r'<div class="media-user" id="media_user">.*?<h2><a href="[^"]*">([^<]*)</a></h2>',
+ webpage, u'uploader id', fatal=False, flags=re.DOTALL)
ext = 'mp4'
return [{