aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ted.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-20 21:42:20 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-20 21:42:20 +0600
commit736785ab63104b4d285545e4755fa03ef4496a47 (patch)
tree9b0b67e0982dcdd4abc2d6baf609d39eb13ae247 /youtube_dl/extractor/ted.py
parent3ded7bac166c71f99b8d8036c072552c483d2364 (diff)
downloadyoutube-dl-736785ab63104b4d285545e4755fa03ef4496a47.tar.xz
[ted] Clarify audio/video-only formats
Diffstat (limited to 'youtube_dl/extractor/ted.py')
-rw-r--r--youtube_dl/extractor/ted.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py
index a2dc14c2b..2c8acfef6 100644
--- a/youtube_dl/extractor/ted.py
+++ b/youtube_dl/extractor/ted.py
@@ -194,14 +194,18 @@ class TEDIE(InfoExtractor):
'tbr': int_or_none(resource.get('bitrate')),
})
elif format_id == 'hls':
- formats.extend(self._extract_m3u8_formats(
- resources.get('stream'), video_name, 'mp4', m3u8_id=format_id))
+ hls_formats = self._extract_m3u8_formats(
+ resources.get('stream'), video_name, 'mp4', m3u8_id=format_id)
+ for f in hls_formats:
+ f['acodec'] = 'none'
+ formats.extend(hls_formats)
audio_download = talk_info.get('audioDownload')
if audio_download:
formats.append({
'url': audio_download,
'format_id': 'audio',
+ 'vcodec': 'none',
})
self._sort_formats(formats)