diff --git a/haruhi_dl/extractor/youtube.py b/haruhi_dl/extractor/youtube.py index 31adcb923..dc33f3734 100644 --- a/haruhi_dl/extractor/youtube.py +++ b/haruhi_dl/extractor/youtube.py @@ -327,6 +327,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): )) |(?: youtu\.be| # just youtu.be/xxxx + youtube\.com/shorts| # or youtube.com/shorts/xxx vid\.plus| # or vid.plus/xxxx zwearz\.com/watch| # or zwearz.com/watch/xxxx )/ @@ -904,6 +905,10 @@ class YoutubeIE(YoutubeBaseInfoExtractor): 'skip_download': True, }, }, + { + 'url': 'https://youtube.com/shorts/7awd-y_DTQY', + 'only_matching': True, + }, ] _VALID_SIG_VALUE_RE = r'^AO[a-zA-Z0-9_-]+=*$'