dotfiles/.config/youtube-dl/config

24 lines
543 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"
# 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.05.20"
# vim:ft=conf: