youtube-dl

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

commit cce81f192c15f3766adb7340315a877bc4fc592b
parent 9d22a7dfb07ad6ff23680e11238744b2bb1735aa
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 16 Jan 2015 14:20:25 +0100

[bandcamp:album] Fix title extraction (Fixes #4721)

Diffstat:
Myoutube_dl/extractor/bandcamp.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py @@ -161,7 +161,8 @@ class BandcampAlbumIE(InfoExtractor): entries = [ self.url_result(compat_urlparse.urljoin(url, t_path), ie=BandcampIE.ie_key()) for t_path in tracks_paths] - title = self._search_regex(r'album_title : "(.*?)"', webpage, 'title') + title = self._search_regex( + r'album_title\s*:\s*"(.*?)"', webpage, 'title', fatal=False) return { '_type': 'playlist', 'id': playlist_id,