Browse Source
[downloader/fragment] Commit part file after each fragment
In order to obtain correct resume_len on next iteration
master
Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
0 deletions
-
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) |
|
|
|