aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/ted.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ted.py b/youtube_dl/extractor/ted.py
index 10b3b706a..5e5322974 100644
--- a/youtube_dl/extractor/ted.py
+++ b/youtube_dl/extractor/ted.py
@@ -134,9 +134,13 @@ class TEDIE(SubtitlesInfoExtractor):
if talk_info.get('external') is not None:
self.to_screen('Found video from %s' % talk_info['external']['service'])
+ if 'code' in talk_info['external']:
+ ext_url = talk_info['external']['code']
+ else:
+ ext_url = talk_info['external']['uri']
return {
'_type': 'url',
- 'url': talk_info['external']['uri'],
+ 'url': ext_url,
}
formats = [{