commit: 593f2f798922d54be8d3f20f4a2048493095016d
parent 603fc4e0ea472c7c2a78ff201d69686a9e3fe1f2
Author: Sergey M․ <dstftw@gmail.com>
Date: Sat, 2 Dec 2017 21:15:45 +0700
[downloader/fragment] Commit part file after each fragment
In order to obtain correct resume_len on next iteration
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py
@@ -107,6 +107,7 @@ class FragmentFD(FileDownloader):
def _append_fragment(self, ctx, frag_content):
try:
ctx['dest_stream'].write(frag_content)
+ ctx['dest_stream'].flush()
finally:
if self.__do_ytdl_file(ctx):
self._write_ytdl_file(ctx)