[instagram] Make description optional (Closes #8326)
This commit is contained in:
		
							parent
							
								
									af9c2a07ae
								
							
						
					
					
						commit
						fb4b345800
					
				| @ -21,6 +21,18 @@ class InstagramIE(InfoExtractor): | |||||||
|             'title': 'Video by naomipq', |             'title': 'Video by naomipq', | ||||||
|             'description': 'md5:1f17f0ab29bd6fe2bfad705f58de3cb8', |             'description': 'md5:1f17f0ab29bd6fe2bfad705f58de3cb8', | ||||||
|         } |         } | ||||||
|  |     }, { | ||||||
|  |         # missing description | ||||||
|  |         'url': 'https://www.instagram.com/p/BA-pQFBG8HZ/?taken-by=britneyspears', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': 'BA-pQFBG8HZ', | ||||||
|  |             'ext': 'mp4', | ||||||
|  |             'uploader_id': 'britneyspears', | ||||||
|  |             'title': 'Video by britneyspears', | ||||||
|  |         }, | ||||||
|  |         'params': { | ||||||
|  |             'skip_download': True, | ||||||
|  |         }, | ||||||
|     }, { |     }, { | ||||||
|         'url': 'https://instagram.com/p/-Cmh1cukG2/', |         'url': 'https://instagram.com/p/-Cmh1cukG2/', | ||||||
|         'only_matching': True, |         'only_matching': True, | ||||||
| @ -32,8 +44,8 @@ class InstagramIE(InfoExtractor): | |||||||
|         webpage = self._download_webpage(url, video_id) |         webpage = self._download_webpage(url, video_id) | ||||||
|         uploader_id = self._search_regex(r'"owner":{"username":"(.+?)"', |         uploader_id = self._search_regex(r'"owner":{"username":"(.+?)"', | ||||||
|                                          webpage, 'uploader id', fatal=False) |                                          webpage, 'uploader id', fatal=False) | ||||||
|         desc = self._search_regex(r'"caption":"(.*?)"', webpage, 'description', |         desc = self._search_regex( | ||||||
|                                   fatal=False) |             r'"caption":"(.+?)"', webpage, 'description', default=None) | ||||||
| 
 | 
 | ||||||
|         return { |         return { | ||||||
|             'id': video_id, |             'id': video_id, | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user