fix(tubesync): patch yt-dlp options

These options print newlines as progress.
This commit is contained in:
514fpv 2024-03-21 09:06:23 +08:00
parent 2cbd260533
commit 4341c81c05
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -1,11 +1,12 @@
diff --git a/tubesync/sync/youtube.py b/tubesync/sync/youtube.py
index 4ac6e83..f0cf5b7 100644
index 4ac6e83..192b031 100644
--- a/tubesync/sync/youtube.py
+++ b/tubesync/sync/youtube.py
@@ -119,6 +119,9 @@ def download_media(url, media_format, extension, output_file, info_json,
@@ -119,6 +119,10 @@ def download_media(url, media_format, extension, output_file, info_json,
'writesubtitles': write_subtitles,
'writeautomaticsub': auto_subtitles,
'subtitleslangs': sub_langs.split(','),
+ 'progress_with_newline': True,
+ 'fragment_retries': 65536,
+ 'skip_unavailable_fragments': False,
+ 'continue_dl': False,