diff options
| -rw-r--r-- | youtube_dl/extractor/vimeo.py | 11 | 
1 files changed, 7 insertions, 4 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 7dd52627d..97590d220 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -395,14 +395,17 @@ class VimeoIE(VimeoBaseInfoExtractor):                      'ext': codec_extension,                      'url': video_url,                      'format_id': format_id, -                    'width': file_info.get('width'), -                    'height': file_info.get('height'), +                    'width': int_or_none(file_info.get('width')), +                    'height': int_or_none(file_info.get('height')), +                    'tbr': int_or_none(file_info.get('bitrate')),                  })          formats = [] +        m3u8_url = config_files.get('hls', {}).get('all') +        if m3u8_url: +            formats = self._extract_m3u8_formats(m3u8_url, 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 = {}          text_tracks = config['request'].get('text_tracks')  | 
