33 lines
No EOL
731 B
YAML
33 lines
No EOL
731 B
YAML
|
|
|
|
presets:
|
|
|
|
best_video_quality:
|
|
format: "bestvideo+bestaudio/best"
|
|
ytdl_options:
|
|
merge_output_format: "mp4"
|
|
|
|
max_1080p:
|
|
format: "(bv*[height<=1080]+bestaudio/best[height<=1080])"
|
|
ytdl_options:
|
|
merge_output_format: "mp4"
|
|
|
|
chunk_initial_download:
|
|
ytdl_options:
|
|
max_downloads: 20
|
|
playlistreverse: True
|
|
break_on_existing: False
|
|
break_on_reject: True
|
|
|
|
"Only Recent":
|
|
# Only fetch videos after today minus date_range
|
|
date_range:
|
|
after: "today-{date_range}"
|
|
|
|
# Only keep files uploaded after date_range
|
|
output_options:
|
|
keep_files_after: "today-{date_range}"
|
|
|
|
# Set the default date_range to 2 months
|
|
overrides:
|
|
date_range: "2months" |