-
Notifications
You must be signed in to change notification settings - Fork 0
/
config
34 lines (23 loc) · 861 Bytes
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Force resume of partially downloaded files.
--continue
# Use the specified external downloader.
--external-downloader "aria2c"
# Give these arguments to the external downloader.
--downloader-args "aria2c:--file-allocation=none"
# Video format code.
--format "bv*[height<=?1080]+ba/b"
# If a merge is required, output to given container format.
--merge-output-format "mkv"
# Prefer video formats with free containers.
--prefer-free-formats
# Do not use .part files - write directly into output file.
--no-part
# Output filename template.
--output "%(title)s.%(ext)s"
# Specify a custom user agent.
--user-agent "Mozilla/5.0 (Linux x86_64) yt-dlp/2023.12.30"
# SponsorBlock categories to create chapters for.
--sponsorblock-mark "all"
# SponsorBlock categories to be removed from the video file.
--sponsorblock-remove "music_offtopic"
# vim:ft=conf: