diff options
| author | remitamine <remitamine@gmail.com> | 2015-10-10 20:45:34 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2015-10-10 20:45:34 +0100 | 
| commit | fff496c689e44ac96909cf55c9ae746fb6b14e07 (patch) | |
| tree | 6100a6fbc9818c1b412663e54cf77a351b00d452 | |
| parent | e5c209a1bcea206bee684914599c84acf886487c (diff) | |
[vimeo] remove check for empty formats
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 2ea5f0b79..2051ac9de 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -405,8 +405,6 @@ class VimeoIE(VimeoBaseInfoExtractor):              formats = self._extract_m3u8_formats(hls['all'], video_id, 'mp4', 'm3u8_native', 0, 'hls', fatal=False)          for key in ('other', 'sd', 'hd'):              formats += files[key] -        if len(formats) == 0: -            raise ExtractorError('No known codec found')          self._sort_formats(formats)          subtitles = {}  | 
