diff options
author | pukkandan <pukkandan@gmail.com> | 2020-11-22 15:50:16 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2020-11-22 15:50:16 +0530 |
commit | 7bd4a9b6110260f9ca7dcd0a55bd77a007c4748b (patch) | |
tree | b325a2bf378758f65f34107e9e605b3e94604bb0 | |
parent | ef2f3c7f58f7409131c47e9ce56f1265547c43a8 (diff) | |
download | hypervideo-pre-7bd4a9b6110260f9ca7dcd0a55bd77a007c4748b.tar.lz hypervideo-pre-7bd4a9b6110260f9ca7dcd0a55bd77a007c4748b.tar.xz hypervideo-pre-7bd4a9b6110260f9ca7dcd0a55bd77a007c4748b.zip |
Added RDMM back
Eg: https://www.youtube.com/watch?v=MuAGGZNfUkU&list=RDMM
-rw-r--r-- | youtube_dlc/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/youtube.py b/youtube_dlc/extractor/youtube.py index 1b4be6075..f273f4d66 100644 --- a/youtube_dlc/extractor/youtube.py +++ b/youtube_dlc/extractor/youtube.py @@ -72,7 +72,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor): # If True it will raise an error if no login info is provided _LOGIN_REQUIRED = False - _PLAYLIST_ID_RE = r'(?:(?:PL|LL|EC|UU|FL|RD|UL|TL|PU|OLAK5uy_)[0-9A-Za-z-_]{10,})' + _PLAYLIST_ID_RE = r'(?:(?:PL|LL|EC|UU|FL|RD|UL|TL|PU|OLAK5uy_)[0-9A-Za-z-_]{10,}|RDMM)' _YOUTUBE_CLIENT_HEADERS = { 'x-youtube-client-name': '1', |