[vimeo] remove check for empty formats
authorremitamine <remitamine@gmail.com>
Sat, 10 Oct 2015 19:45:34 +0000 (20:45 +0100)
committerremitamine <remitamine@gmail.com>
Sat, 10 Oct 2015 19:45:34 +0000 (20:45 +0100)
youtube_dl/extractor/vimeo.py

index 2ea5f0b79e2347ebeb4cf34dbfe08bf5f7b80091..2051ac9de58cea3ec38e9fece0ff5ef629aa506f 100644 (file)
@@ -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 = {}