fix(tubesync): patch yt-dlp options
These options print newlines as progress.
This commit is contained in:
parent
2cbd260533
commit
4341c81c05
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue