yt-dlp-dags/cli.config

42 lines
719 B
Plaintext

# yt-dlp configuration for format_download.py
# Continue on broken downloads
#--continue
# Do not simulate
--no-simulate
# Do not write info.json file (we already have it)
--no-write-info-json
# Continue on download errors
--ignore-errors
# Do not download playlist
--no-playlist
# Retry fragments 10 times
--fragment-retries 10
# Use a fixed buffer size to stabilize throughput and avoid traffic shaping
--no-resize-buffer
--buffer-size 4M
# Socket timeout
--socket-timeout 15
# Sleep interval
--min-sleep-interval 5
--max-sleep-interval 10
# Progress
--progress
# Merge to mp4 by default
--merge-output-format mp4
# Don't use "NA" in filenames if metadata is missing
--output-na-placeholder ""
--no-part