[downloader/fragment] Restart inconsistent incomplete fragment downloads (#13731)
authorSergey M․ <dstftw@gmail.com>
Thu, 14 Sep 2017 16:19:53 +0000 (23:19 +0700)
committerSergey M․ <dstftw@gmail.com>
Thu, 14 Sep 2017 16:19:53 +0000 (23:19 +0700)
youtube_dl/downloader/fragment.py

index bccc8ecc1e91af231bbf63cf07f9ee9e50948b25..6f6fb4a77a9dc2b3e4e4278bc51b12755bc709ee 100644 (file)
@@ -151,10 +151,15 @@ class FragmentFD(FileDownloader):
         if self.__do_ytdl_file(ctx):
             if os.path.isfile(encodeFilename(self.ytdl_filename(ctx['filename']))):
                 self._read_ytdl_file(ctx)
+                if ctx['fragment_index'] > 0 and resume_len == 0:
+                    self.report_error(
+                        'Inconsistent state of incomplete fragment download. '
+                        'Restarting from the beginning...')
+                    ctx['fragment_index'] = resume_len = 0
+                    self._write_ytdl_file(ctx)
             else:
                 self._write_ytdl_file(ctx)
-            if ctx['fragment_index'] > 0:
-                assert resume_len > 0
+                assert ctx['fragment_index'] == 0
 
         dest_stream, tmpfilename = sanitize_open(tmpfilename, open_mode)