tasks/multimedia-archive: update yt-dlp service config

This commit is contained in:
Gabriel Arazas 2022-08-31 14:39:24 +08:00
parent 767bfddead
commit 9b3c3f6c1b

View File

@ -28,7 +28,7 @@ in
"--write-description" "--write-description"
# The global output for all of the jobs. # The global output for all of the jobs.
"--output" "%(uploader,artist,creator|Unknown)s/%(release_date>%F,upload_date>%F|Unknown)s-%(title)s.%(ext)s" "--output" "%(uploader,artist,creator|Unknown)s/%(release_date>%F,upload_date>%F|Unknown)s-%(title)156s.%(ext)s"
# Select only the most optimal format for my usecases. # Select only the most optimal format for my usecases.
"--format" "(webm,mkv,mp4)[height<=?1280]" "--format" "(webm,mkv,mp4)[height<=?1280]"
@ -39,9 +39,7 @@ in
# Don't download any videos that are originally live streams. # Don't download any videos that are originally live streams.
"--match-filters" "!was_live" "--match-filters" "!was_live"
# Prefer Vorbis when audio-only downloads are used. "--audio-quality" "1"
"--audio-format" "vorbis"
"--audio-quality" "2"
# Not much error since it will always fail. # Not much error since it will always fail.
"--no-abort-on-error" "--no-abort-on-error"