about summary refs log tree commit diff
path: root/youtube_dl/extractor/ted.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-01-19 21:25:53 +0100
committerRemita Amine <remitamine@gmail.com>2019-01-19 21:25:53 +0100
commitf28363ad1fb45b4450ae6f09ff9aff8f93227e40 (patch)
tree025084c5609fe8a42bf3a6321f2467dfe0b32031 /youtube_dl/extractor/ted.py
parent2bfc1d9d68dec097fd8093dc0284dd0cd64beb2e (diff)
downloadyoutube-dl-f28363ad1fb45b4450ae6f09ff9aff8f93227e40.tar.gz
youtube-dl-f28363ad1fb45b4450ae6f09ff9aff8f93227e40.tar.xz
youtube-dl-f28363ad1fb45b4450ae6f09ff9aff8f93227e40.zip
[ted] correct acodec for http formats(#18923)
Diffstat (limited to 'youtube_dl/extractor/ted.py')
-rw-r--r--youtube_dl/extractor/ted.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py
index d3e4205f5..645942dfd 100644
--- a/youtube_dl/extractor/ted.py
+++ b/youtube_dl/extractor/ted.py
@@ -265,6 +265,8 @@ class TEDIE(InfoExtractor):
                     'format_id': m3u8_format['format_id'].replace('hls', 'http'),
                     'protocol': 'http',
                 })
+                if f.get('acodec') == 'none':
+                    del f['acodec']
                 formats.append(f)
 
         audio_download = talk_info.get('audioDownload')