about summary refs log tree commit diff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-12-02 21:15:45 +0700
committerSergey M․ <dstftw@gmail.com>2017-12-02 21:21:11 +0700
commit593f2f798922d54be8d3f20f4a2048493095016d (patch)
tree98d3071b04eeae8e9b3ced7d7eda018c83192f5a /youtube_dl/downloader
parent603fc4e0ea472c7c2a78ff201d69686a9e3fe1f2 (diff)
downloadyoutube-dl-593f2f798922d54be8d3f20f4a2048493095016d.tar.gz
youtube-dl-593f2f798922d54be8d3f20f4a2048493095016d.tar.xz
youtube-dl-593f2f798922d54be8d3f20f4a2048493095016d.zip
[downloader/fragment] Commit part file after each fragment
In order to obtain correct resume_len on next iteration
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/fragment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py
index 93002e45a..7bb61a541 100644
--- 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)