mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Set the 'extractor_key' field in the info_dict
It's the string returned by the class method 'ie_key', which allows to retrieve the extractor with 'get_info_extractor'
This commit is contained in:
		| @@ -149,7 +149,7 @@ def generator(test_case): | |||||||
|                 for key in ('id', 'url', 'title', 'ext'): |                 for key in ('id', 'url', 'title', 'ext'): | ||||||
|                     self.assertTrue(key in info_dict.keys() and info_dict[key]) |                     self.assertTrue(key in info_dict.keys() and info_dict[key]) | ||||||
|                 # Check for mandatory fields that are automatically set by YoutubeDL |                 # Check for mandatory fields that are automatically set by YoutubeDL | ||||||
|                 for key in ['webpage_url', 'extractor']: |                 for key in ['webpage_url', 'extractor', 'extractor_key']: | ||||||
|                     self.assertTrue(info_dict.get(key), u'Missing field: %s' % key) |                     self.assertTrue(info_dict.get(key), u'Missing field: %s' % key) | ||||||
|         finally: |         finally: | ||||||
|             try_rm_tcs_files() |             try_rm_tcs_files() | ||||||
|   | |||||||
| @@ -357,7 +357,8 @@ class YoutubeDL(object): | |||||||
|                 self.add_extra_info(ie_result, |                 self.add_extra_info(ie_result, | ||||||
|                     { |                     { | ||||||
|                         'extractor': ie.IE_NAME, |                         'extractor': ie.IE_NAME, | ||||||
|                         'webpage_url': url |                         'webpage_url': url, | ||||||
|  |                         'extractor_key': ie.ie_key(), | ||||||
|                     }) |                     }) | ||||||
|                 return self.process_ie_result(ie_result, download, extra_info) |                 return self.process_ie_result(ie_result, download, extra_info) | ||||||
|             except ExtractorError as de: # An error we somewhat expected |             except ExtractorError as de: # An error we somewhat expected | ||||||
| @@ -421,6 +422,7 @@ class YoutubeDL(object): | |||||||
|                     'playlist_index': i + playliststart, |                     'playlist_index': i + playliststart, | ||||||
|                     'extractor': ie_result['extractor'], |                     'extractor': ie_result['extractor'], | ||||||
|                     'webpage_url': ie_result['webpage_url'], |                     'webpage_url': ie_result['webpage_url'], | ||||||
|  |                     'extractor_key': ie_result['extractor_key'], | ||||||
|                 } |                 } | ||||||
|                 entry_result = self.process_ie_result(entry, |                 entry_result = self.process_ie_result(entry, | ||||||
|                                                       download=download, |                                                       download=download, | ||||||
| @@ -434,6 +436,7 @@ class YoutubeDL(object): | |||||||
|                     { |                     { | ||||||
|                         'extractor': ie_result['extractor'], |                         'extractor': ie_result['extractor'], | ||||||
|                         'webpage_url': ie_result['webpage_url'], |                         'webpage_url': ie_result['webpage_url'], | ||||||
|  |                         'extractor_key': ie_result['extractor_key'], | ||||||
|                     }) |                     }) | ||||||
|                 return r |                 return r | ||||||
|             ie_result['entries'] = [ |             ie_result['entries'] = [ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user