Browse Source

[ted] Add 'http://' to the thumbnail url if it's missing

totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
b6c1ceccc2
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      youtube_dl/extractor/ted.py

+ 4
- 1
youtube_dl/extractor/ted.py View File

@ -93,11 +93,14 @@ class TEDIE(SubtitlesInfoExtractor):
self._list_available_subtitles(video_id, talk_info)
return
thumbnail = talk_info['thumb']
if not thumbnail.startswith('http'):
thumbnail = 'http://' + thumbnail
return {
'id': video_id,
'title': talk_info['title'],
'uploader': talk_info['speaker'],
'thumbnail': talk_info['thumb'],
'thumbnail': thumbnail,
'description': self._og_search_description(webpage),
'subtitles': video_subtitles,
'formats': formats,


Loading…
Cancel
Save