mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Merge branch 'minusf-TED_code'
This commit is contained in:
		| @@ -83,6 +83,22 @@ class TEDIE(SubtitlesInfoExtractor): | ||||
|         'params': { | ||||
|             'skip_download': True, | ||||
|         }, | ||||
|     }, { | ||||
|         # YouTube video | ||||
|         'url': 'http://www.ted.com/talks/jeffrey_kluger_the_sibling_bond', | ||||
|         'add_ie': ['Youtube'], | ||||
|         'info_dict': { | ||||
|             'id': 'aFBIPO-P7LM', | ||||
|             'ext': 'mp4', | ||||
|             'title': 'The hidden power of siblings: Jeff Kluger at TEDxAsheville', | ||||
|             'description': 'md5:3d7a4f50d95ca5dd67104e2a20f43fe1', | ||||
|             'uploader': 'TEDx Talks', | ||||
|             'uploader_id': 'TEDxTalks', | ||||
|             'upload_date': '20111216', | ||||
|         }, | ||||
|         'params': { | ||||
|             'skip_download': True, | ||||
|         }, | ||||
|     }] | ||||
|  | ||||
|     _NATIVE_FORMATS = { | ||||
| @@ -132,11 +148,16 @@ class TEDIE(SubtitlesInfoExtractor): | ||||
|  | ||||
|         talk_info = self._extract_info(webpage)['talks'][0] | ||||
|  | ||||
|         if talk_info.get('external') is not None: | ||||
|             self.to_screen('Found video from %s' % talk_info['external']['service']) | ||||
|         external = talk_info.get('external') | ||||
|         if external: | ||||
|             service = external['service'] | ||||
|             self.to_screen('Found video from %s' % service) | ||||
|             ext_url = None | ||||
|             if service.lower() == 'youtube': | ||||
|                 ext_url = external.get('code') | ||||
|             return { | ||||
|                 '_type': 'url', | ||||
|                 'url': talk_info['external']['uri'], | ||||
|                 'url': ext_url or external['uri'], | ||||
|             } | ||||
|  | ||||
|         formats = [{ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user