From 6621ca39a3f03e44648b54bd8ff57814362f5dbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Mon, 20 Apr 2015 22:04:42 +0600 Subject: [PATCH] [ted] Skip hls quality selection format --- youtube_dl/extractor/ted.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py index 8aa27d282..a48d77c30 100644 --- a/youtube_dl/extractor/ted.py +++ b/youtube_dl/extractor/ted.py @@ -198,6 +198,8 @@ class TEDIE(InfoExtractor): hls_formats = self._extract_m3u8_formats( resources.get('stream'), video_name, 'mp4', m3u8_id=format_id) for f in hls_formats: + if f.get('format_id') == 'hls-meta': + continue if not f.get('height'): f['vcodec'] = 'none' else: