youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 48bfb5f2387ab47e1973d9db0782a9af66ffc4e6
parent 97ebe8dcaf648534fa605c51c3ad8145c97d0a6c
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 30 Jun 2013 14:07:32 +0200

[instagram] Fix title

Diffstat:
Myoutube_dl/extractor/statigram.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/statigram.py b/youtube_dl/extractor/statigram.py @@ -10,7 +10,7 @@ class StatigramIE(InfoExtractor): u'md5': u'deda4ff333abe2e118740321e992605b', u'info_dict': { u"uploader_id": u"videoseconds", - u"title": u"Instagram photo by @videoseconds (Video)" + u"title": u"Instagram photo by @videoseconds" } } @@ -27,7 +27,7 @@ class StatigramIE(InfoExtractor): html_title = self._html_search_regex( r'<title>(.+?)</title>', webpage, u'title') - title = html_title.rpartition(u' | Statigram')[0] + title = re.sub(r'(?: *\(Videos?\))? \| Statigram$', '', html_title) uploader_id = self._html_search_regex( r'@([^ ]+)', title, u'uploader name', fatal=False) ext = 'mp4'