diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-10-04 03:25:20 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-10-04 03:25:20 +0200 |
commit | 7a2cf5455ceca85eceefb3d34e32f29b54113769 (patch) | |
tree | d67c4499eecb801046b74412d857bd6cb14f8a4b | |
parent | 7125a7ca8b5e5228a8199cb95779f83fd3ee05e2 (diff) |
Fix recognition of http://www.youtube.com/course?list=PL41FDABC6AA085E78&category=University/Mathematics/Topology%20%26%20Geometry
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index d3582c442..8560059f1 100755 --- a/youtube-dl +++ b/youtube-dl @@ -2458,7 +2458,7 @@ class YahooSearchIE(InfoExtractor): class YoutubePlaylistIE(InfoExtractor): """Information Extractor for YouTube playlists.""" - _VALID_URL = r'(?:https?://)?(?:\w+\.)?youtube\.com/(?:(?:view_play_list|my_playlists|artist|playlist)\?.*?(p|a|list)=|user/.*?/user/|p/|user/.*?#[pg]/c/)(?:PL)?([0-9A-Za-z]+)(?:/.*?/([0-9A-Za-z_-]+))?.*' + _VALID_URL = r'(?:https?://)?(?:\w+\.)?youtube\.com/(?:(?:course|view_play_list|my_playlists|artist|playlist)\?.*?(p|a|list)=|user/.*?/user/|p/|user/.*?#[pg]/c/)(?:PL)?([0-9A-Za-z]+)(?:/.*?/([0-9A-Za-z_-]+))?.*' _TEMPLATE_URL = 'http://www.youtube.com/%s?%s=%s&page=%s&gl=US&hl=en' _VIDEO_INDICATOR = r'/watch\?v=(.+?)&' _MORE_PAGES_INDICATOR = r'(?m)>\s*Next\s*</a>' |