diff options
author | JSDurand <mmemmew@gmail.com> | 2022-01-10 00:00:14 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-01-10 00:00:14 +0800 |
commit | ff35414422cf03e321b3302b414eb3f45ec659d5 (patch) | |
tree | a403d583627f1a8dfe8125336246c91d19821f5e | |
parent | 7eb6d0e9dd2b236cd72426eaa8d900aaae7bf817 (diff) |
elfeed-conf: use yt-dlp instead of youtube-dl
-rw-r--r-- | elfeed-conf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elfeed-conf.el b/elfeed-conf.el index 4f1c2cc..16d1db6 100644 --- a/elfeed-conf.el +++ b/elfeed-conf.el @@ -184,7 +184,7 @@ will first be erased." :sentinel #'durand-eshell-download-sentinel :filter #'durand-eshell-download-filter :command (list - "youtube-dl" "-f" "bestvideo[height<=720]+bestaudio/best[height<=720]/best" + "yt-dlp" "-f" "bv[height<=720]+ba/b" link))) (process-put proc 'id (cdr (elfeed-entry-id entry))) (process-put proc 'title (elfeed-entry-title entry)) |