Преглед изворни кода

Fix for all-formats exception by Valentin Hilbig

Ricardo Garcia пре 15 година
родитељ
комит
896a6ea9e2
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      youtube-dl

+ 2 - 2
youtube-dl

@@ -927,17 +927,18 @@ class YoutubeIE(InfoExtractor):
 				})
 
 				if all_formats:
+					quality_index += 1
 					if quality_index == len(self._available_formats):
 						# None left to get
 						return
 					else:
-						quality_index += 1
 						format_param = self._available_formats[quality_index]
 						continue
 				return
 
 			except UnavailableFormatError, err:
 				if best_quality or all_formats:
+					quality_index += 1
 					if quality_index == len(self._available_formats):
 						# I don't ever expect this to happen
 						if not all_formats:
@@ -945,7 +946,6 @@ class YoutubeIE(InfoExtractor):
 						return
 					else:
 						self.report_unavailable_format(video_id, format_param)
-						quality_index += 1
 						format_param = self._available_formats[quality_index]
 						continue
 				else: