diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-02-13 05:18:58 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-02-13 05:18:58 +0600 |
commit | f9f49d87c2d731e220ee4b5cf83fbbd17e3bfa5d (patch) | |
tree | be92c35ead232c55a63201ccb8d27af822a3314a /youtube_dl | |
parent | 6863631c2696f93123ae5ceca1e261311f0d8925 (diff) |
[youtube] Add test for #8536
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 97d621907..18f7d37f4 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -705,6 +705,15 @@ class YoutubeIE(YoutubeBaseInfoExtractor): }, }, { + # Multifeed video with comma in title (see https://github.com/rg3/youtube-dl/issues/8536) + 'url': 'https://www.youtube.com/watch?v=gVfLd0zydlo', + 'info_dict': { + 'id': 'gVfLd0zydlo', + 'title': 'DevConf.cz 2016 Day 2 Workshops 1 14:00 - 15:30', + }, + 'playlist_count': 2, + }, + { 'url': 'http://vid.plus/FlRa-iH7PGw', 'only_matching': True, }, |