diff options
author | Sergey M. <dstftw@gmail.com> | 2014-06-15 02:49:16 +0700 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2014-06-15 02:49:16 +0700 |
commit | 36755d40b49f631c75d4112f4210b4668ccf5ef2 (patch) | |
tree | ee95ccb20817051a250e597d6511cc78e9bc8bc7 | |
parent | a7207cd58038b489bea96397b20b536cfc7a5dac (diff) | |
parent | 7d568f5ab894468f36fb046adc1c6b7a178ec132 (diff) |
Merge pull request #3078 from pulpe/youtube_fix
[Youtube] Recognize playlists with LL
-rw-r--r-- | youtube_dl/extractor/youtube.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 7c50881c4..ece62dfce 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1386,13 +1386,13 @@ class YoutubePlaylistIE(YoutubeBaseInfoExtractor): | p/ ) ( - (?:PL|EC|UU|FL|RD)?[0-9A-Za-z-_]{10,} + (?:PL|LL|EC|UU|FL|RD)?[0-9A-Za-z-_]{10,} # Top tracks, they can also include dots |(?:MC)[\w\.]* ) .* | - ((?:PL|EC|UU|FL|RD)[0-9A-Za-z-_]{10,}) + ((?:PL|LL|EC|UU|FL|RD)[0-9A-Za-z-_]{10,}) )""" _TEMPLATE_URL = 'https://www.youtube.com/playlist?list=%s' _MORE_PAGES_INDICATOR = r'data-link-type="next"' |