diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-04-06 00:35:55 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-04-06 00:35:55 +0600 | 
| commit | 06b491eb7b9459f92484f83973c17d46dba59f1f (patch) | |
| tree | 4ff80ab29c2693e5eac682696eec67a16464b396 | |
| parent | 3a9fadd6dfc127ed0707b218b11ac10c654af1e2 (diff) | |
[youtube] Add test for #5361
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 18 | 
1 files changed, 17 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index f7f701cc5..198fe84ef 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -495,7 +495,23 @@ class YoutubeIE(YoutubeBaseInfoExtractor):                  'uploader': '孫艾倫',                  'title': '[A-made] 變態妍字幕版 太妍 我就是這樣的人',              }, -        } +        }, +        # url_encoded_fmt_stream_map is empty string +        { +            'url': 'qEJwOuvDf7I', +            'info_dict': { +                'id': 'qEJwOuvDf7I', +                'ext': 'mp4', +                'title': 'Обсуждение судебной практики по выборам 14 сентября 2014 года в Санкт-Петербурге', +                'description': '', +                'upload_date': '20150404', +                'uploader_id': 'spbelect', +                'uploader': 'Наблюдатели Петербурга', +            }, +            'params': { +                'skip_download': 'requires avconv', +            } +        },      ]      def __init__(self, *args, **kwargs): | 
