From f4076bb73686484310a3a2b7c0c4c20db6e186bc Mon Sep 17 00:00:00 2001 From: remitamine Date: Sat, 10 Oct 2015 19:56:55 +0100 Subject: [PATCH] [vimeo] extract m3u8 manifest and bitrate --- youtube_dl/extractor/vimeo.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 7dd52627d..93638d6b2 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -397,8 +397,12 @@ class VimeoIE(VimeoBaseInfoExtractor): 'format_id': format_id, 'width': file_info.get('width'), 'height': file_info.get('height'), + 'tbr': file_info.get('bitrate'), }) formats = [] + hls = config_files.get("hls") + if hls: + formats = self._extract_m3u8_formats(hls['all'], video_id, m3u8_id='hls') for key in ('other', 'sd', 'hd'): formats += files[key] if len(formats) == 0: -- 2.30.2