dotfiles/.config/youtube-dl/config

27 lines
616 B
INI

# Force resume of partially downloaded files.
--continue
# Embed thumbnail in the audio as cover art.
--embed-thumbnail
# Use the specified external downloader.
--external-downloader aria2c
# Give these arguments to the external downloader.
--external-downloader-args "--file-allocation=none"
# Video format code.
--format "bestvideo[height<=?1080]+bestaudio/best"
# 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 (X11; Linux x86_64) youtube-dl/2019.06.08"
# vim:ft=conf: