mirror of
				https://code.hackerspace.pl/q3k/youtube-dl
				synced 2025-03-16 11:43:02 +00:00 
			
		
		
		
	[vzaar] Fix videos with empty title (closes #21606)
This commit is contained in:
		
							parent
							
								
									e61ac1a09c
								
							
						
					
					
						commit
						313877c6a2
					
				| @ -32,6 +32,10 @@ class VzaarIE(InfoExtractor): | |||||||
|             'ext': 'mp3', |             'ext': 'mp3', | ||||||
|             'title': 'MP3', |             'title': 'MP3', | ||||||
|         }, |         }, | ||||||
|  |     }, { | ||||||
|  |         # with null videoTitle | ||||||
|  |         'url': 'https://view.vzaar.com/20313539/download', | ||||||
|  |         'only_matching': True, | ||||||
|     }] |     }] | ||||||
| 
 | 
 | ||||||
|     @staticmethod |     @staticmethod | ||||||
| @ -45,7 +49,7 @@ class VzaarIE(InfoExtractor): | |||||||
|         video_data = self._download_json( |         video_data = self._download_json( | ||||||
|             'http://view.vzaar.com/v2/%s/video' % video_id, video_id) |             'http://view.vzaar.com/v2/%s/video' % video_id, video_id) | ||||||
| 
 | 
 | ||||||
|         title = video_data['videoTitle'] |         title = video_data.get('videoTitle') or video_id | ||||||
| 
 | 
 | ||||||
|         formats = [] |         formats = [] | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Sergey M․
						Sergey M․