fix(tubesync): patch yt-dlp options
These new options ensure integrity.
This commit is contained in:
parent
a44607b1ed
commit
b5807f39f5
|
@ -55,6 +55,7 @@
|
||||||
./gunicorn-env.patch
|
./gunicorn-env.patch
|
||||||
./state-dir-env.patch
|
./state-dir-env.patch
|
||||||
./database-local-socket.patch
|
./database-local-socket.patch
|
||||||
|
./ensure-fragments.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
13
package/tubesync/ensure-fragments.patch
Normal file
13
package/tubesync/ensure-fragments.patch
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
diff --git a/tubesync/sync/youtube.py b/tubesync/sync/youtube.py
|
||||||
|
index 4ac6e83..2915bf9 100644
|
||||||
|
--- a/tubesync/sync/youtube.py
|
||||||
|
+++ b/tubesync/sync/youtube.py
|
||||||
|
@@ -119,6 +119,8 @@ def download_media(url, media_format, extension, output_file, info_json,
|
||||||
|
'writesubtitles': write_subtitles,
|
||||||
|
'writeautomaticsub': auto_subtitles,
|
||||||
|
'subtitleslangs': sub_langs.split(','),
|
||||||
|
+ 'fragment_retries': 65536,
|
||||||
|
+ 'skip_unavailable_fragments': False,
|
||||||
|
}
|
||||||
|
|
||||||
|
sbopt = {
|
Loading…
Reference in a new issue