youtube-dl

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

commit ec98946ef9ae19f5218ac66d72d61883709982ca
parent fa77b742ac54c2125e7dca931f533cd3e945b8f7
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Tue, 17 Dec 2013 02:41:34 +0100

[academicearth] Support playlists (Closes #1976)

Diffstat:
Myoutube_dl/extractor/academicearth.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/academicearth.py b/youtube_dl/extractor/academicearth.py @@ -9,7 +9,7 @@ from ..utils import ( class AcademicEarthCourseIE(InfoExtractor): - _VALID_URL = r'^https?://(?:www\.)?academicearth\.org/courses/(?P<id>[^?#/]+)' + _VALID_URL = r'^https?://(?:www\.)?academicearth\.org/(?:courses|playlists)/(?P<id>[^?#/]+)' IE_NAME = u'AcademicEarth:Course' def _real_extract(self, url):