projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6728187
)
[ted] Fix hls audio/video-only formats
author
Sergey M․
<dstftw@gmail.com>
Mon, 20 Apr 2015 16:01:02 +0000
(22:01 +0600)
committer
Sergey M․
<dstftw@gmail.com>
Mon, 20 Apr 2015 16:01:02 +0000
(22:01 +0600)
youtube_dl/extractor/ted.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/ted.py
b/youtube_dl/extractor/ted.py
index e2cbbc121b97d439479140efe1aa4ce1e49bb98d..c788feb5dab8d2fd36941612966f89f63e76c22e 100644
(file)
--- 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')