diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-12-02 21:15:45 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-12-02 21:21:11 +0700 |
commit | 593f2f798922d54be8d3f20f4a2048493095016d (patch) | |
tree | 98d3071b04eeae8e9b3ced7d7eda018c83192f5a /youtube_dl | |
parent | 603fc4e0ea472c7c2a78ff201d69686a9e3fe1f2 (diff) |
[downloader/fragment] Commit part file after each fragment
In order to obtain correct resume_len on next iteration
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/downloader/fragment.py | 1 |
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) |