diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-09 22:30:46 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-09 22:30:46 +0700 |
commit | 022a5d663bc654a2d5f650f209dd7a8f86ac38a8 (patch) | |
tree | 64beb545243c80e55902aee21e5d579ff3c9f7e0 | |
parent | 8409b3683c95e59782ac88807ee3e949a6d728e7 (diff) |
[youtube] Add test for itag 212 (#11575)
-rw-r--r-- | youtube_dl/extractor/youtube.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 3d80797e2..e6b840735 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -863,6 +863,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor): 'params': { 'skip_download': True, }, + }, + { + # itag 212 + 'url': '1t24XAntNCY', + 'only_matching': True, } ] |