diff options
| author | Lukáš Lalinský <lukas@oxygene.sk> | 2015-10-20 16:38:44 +0200 | 
|---|---|---|
| committer | Lukáš Lalinský <lukas@oxygene.sk> | 2015-10-20 16:38:44 +0200 | 
| commit | 8bea039b8329074af9a95fe51e7622c8074f6218 (patch) | |
| tree | 03957c317dd975105bf8f5f3a9ec7305c90df782 | |
| parent | b6aa99aff8278142fed94e37e500f1cfb62defd1 (diff) | |
[vimeo] New test, fixed one older test
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index bdec79341..2437ae1eb 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -133,7 +133,7 @@ class VimeoIE(VimeoBaseInfoExtractor):                  'uploader_id': 'user18948128',                  'uploader': 'Jaime Marquínez Ferrándiz',                  'duration': 10, -                'description': 'This is "youtube-dl password protected test video" by Jaime Marquínez Ferrándiz on Vimeo, the home for high quality videos and the people who love them.', +                'description': 'This is "youtube-dl password protected test video" by Jaime Marquínez Ferrándiz on Vimeo, the home for high quality videos and the people\u2026',              },              'params': {                  'videopassword': 'youtube-dl', @@ -181,6 +181,11 @@ class VimeoIE(VimeoBaseInfoExtractor):                  'uploader_id': 'user28849593',              },          }, +        { +            'url': 'https://vimeo.com/109815029', +            'note': 'Video not completely processed, "failed" seed status', +            'only_matching': True, +        },      ]      @staticmethod | 
