about summary refs log tree commit diff
path: root/youtube_dl/extractor/ted.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-20 22:01:02 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-20 22:01:02 +0600
commit0f0b5736dab5e45189d1b35e0b7074585edd057b (patch)
tree572fac69c65b528b7f9688daeb2a39aea6a4b5c9 /youtube_dl/extractor/ted.py
parent6728187ac0b1d5d083e8654e35a18d33485f2614 (diff)
downloadyoutube-dl-0f0b5736dab5e45189d1b35e0b7074585edd057b.tar.gz
youtube-dl-0f0b5736dab5e45189d1b35e0b7074585edd057b.tar.xz
youtube-dl-0f0b5736dab5e45189d1b35e0b7074585edd057b.zip
[ted] Fix hls audio/video-only formats
Diffstat (limited to 'youtube_dl/extractor/ted.py')
-rw-r--r--youtube_dl/extractor/ted.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py
index e2cbbc121..c788feb5d 100644
--- a/youtube_dl/extractor/ted.py
+++ b/youtube_dl/extractor/ted.py
@@ -198,7 +198,10 @@ class TEDIE(InfoExtractor):
                 hls_formats = self._extract_m3u8_formats(
                     resources.get('stream'), video_name, 'mp4', m3u8_id=format_id)
                 for f in hls_formats:
-                    f['acodec'] = 'none'
+                    if not f.get('height'):
+                        f['vcodec'] = 'none'
+                    else:
+                        f['acodec'] = 'none'
                 formats.extend(hls_formats)
 
         audio_download = talk_info.get('audioDownload')