diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-02-15 20:59:16 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-02-15 20:59:16 +0600 | 
| commit | 6eff2605d645664ba52fe873bb28cea77744e7f6 (patch) | |
| tree | 95f1394cadf1e226ad4c0f8c8d854e60daff6d84 /youtube_dl/extractor/canvas.py | |
| parent | fd7a3ea4a41ccad37c932662d39e159854311357 (diff) | |
[canvas] Add subtitles test (#8537)
Diffstat (limited to 'youtube_dl/extractor/canvas.py')
| -rw-r--r-- | youtube_dl/extractor/canvas.py | 24 | 
1 files changed, 22 insertions, 2 deletions
diff --git a/youtube_dl/extractor/canvas.py b/youtube_dl/extractor/canvas.py index 54b535ae9..ec6d24d96 100644 --- a/youtube_dl/extractor/canvas.py +++ b/youtube_dl/extractor/canvas.py @@ -6,7 +6,7 @@ from ..utils import float_or_none  class CanvasIE(InfoExtractor):      _VALID_URL = r'https?://(?:www\.)?canvas\.be/video/(?:[^/]+/)*(?P<id>[^/?#&]+)' -    _TEST = { +    _TESTS = [{          'url': 'http://www.canvas.be/video/de-afspraak/najaar-2015/de-afspraak-veilt-voor-de-warmste-week',          'md5': 'ea838375a547ac787d4064d8c7860a6c',          'info_dict': { @@ -18,7 +18,27 @@ class CanvasIE(InfoExtractor):              'thumbnail': 're:^https?://.*\.jpg$',              'duration': 49.02,          } -    } +    }, { +        # with subtitles +        'url': 'http://www.canvas.be/video/panorama/2016/pieter-0167', +        'info_dict': { +            'id': 'mz-ast-5240ff21-2d30-4101-bba6-92b5ec67c625', +            'display_id': 'pieter-0167', +            'ext': 'mp4', +            'title': 'Pieter 0167', +            'description': 'md5:943cd30f48a5d29ba02c3a104dc4ec4e', +            'thumbnail': 're:^https?://.*\.jpg$', +            'duration': 2553.08, +            'subtitles': { +                'nl': [{ +                    'ext': 'vtt', +                }], +            }, +        }, +        'params': { +            'skip_download': True, +        } +    }]      def _real_extract(self, url):          display_id = self._match_id(url)  | 
