mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 10:27:07 -05:00 
			
		
		
		
	Only catch UnavailableFormatError in call to process_info
This commit is contained in:
		@@ -288,7 +288,6 @@ class FileDownloader(object):
 | 
			
		||||
 | 
			
		||||
			return
 | 
			
		||||
			
 | 
			
		||||
 | 
			
		||||
		try:
 | 
			
		||||
			template_dict = dict(info_dict)
 | 
			
		||||
			template_dict['epoch'] = unicode(long(time.time()))
 | 
			
		||||
@@ -621,7 +620,6 @@ class YoutubeIE(InfoExtractor):
 | 
			
		||||
				best_quality = True
 | 
			
		||||
 | 
			
		||||
		while True:
 | 
			
		||||
			try:
 | 
			
		||||
			# Extension
 | 
			
		||||
			video_extension = self._video_extensions.get(format_param, 'flv')
 | 
			
		||||
 | 
			
		||||
@@ -668,6 +666,7 @@ class YoutubeIE(InfoExtractor):
 | 
			
		||||
			simple_title = re.sub(ur'(?u)([^%s]+)' % simple_title_chars, ur'_', video_title)
 | 
			
		||||
			simple_title = simple_title.strip(ur'_')
 | 
			
		||||
 | 
			
		||||
			try:
 | 
			
		||||
				# Process video information
 | 
			
		||||
				self._downloader.process_info({
 | 
			
		||||
					'id':		video_id.decode('utf-8'),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user