mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-21 20:46:36 -05:00
[downloader/fragment] Commit part file after each fragment
In order to obtain correct resume_len on next iteration
This commit is contained in:
parent
603fc4e0ea
commit
593f2f7989
1 changed files with 1 additions and 0 deletions
|
@ -107,6 +107,7 @@ def _download_fragment(self, ctx, frag_url, info_dict, headers=None):
|
||||||
def _append_fragment(self, ctx, frag_content):
|
def _append_fragment(self, ctx, frag_content):
|
||||||
try:
|
try:
|
||||||
ctx['dest_stream'].write(frag_content)
|
ctx['dest_stream'].write(frag_content)
|
||||||
|
ctx['dest_stream'].flush()
|
||||||
finally:
|
finally:
|
||||||
if self.__do_ytdl_file(ctx):
|
if self.__do_ytdl_file(ctx):
|
||||||
self._write_ytdl_file(ctx)
|
self._write_ytdl_file(ctx)
|
||||||
|
|
Loading…
Reference in a new issue