logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 4d144be8b0b93c052648e8137ffd961deee4516e
parent 2128b696b87ed1b44aac0ee31deb94b0b777f7db
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 13 Dec 2014 23:50:04 +0100

[bandcamp:album] Do not match plain Bandcamp URLs (#4461)

The _VALID_URL 1fa174692aae06406c9524fec392a131f10c68fe is to broad, since it matches everything beginning with bandcamp.com.

Diffstat:

Myoutube_dl/extractor/bandcamp.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py @@ -106,7 +106,7 @@ class BandcampIE(InfoExtractor): class BandcampAlbumIE(InfoExtractor): IE_NAME = 'Bandcamp:album' - _VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<title>[^?#]+))?' + _VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<title>[^?#]+)|/?(?:$|[?#]))' _TESTS = [{ 'url': 'http://blazo.bandcamp.com/album/jazz-format-mixtape-vol-1',