diff options
author | colin <colin@cicadas.surf> | 2024-07-15 07:30:36 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-07-15 07:30:36 -0700 |
commit | e9e8922d4c6f7f390b897eec9ea340cd6d6733ee (patch) | |
tree | 9b3c89c657f042e7a3be03c13ea0ec4e361f3d6e | |
parent | 9ab26f07d209a387252a87dc10e986995bbc154a (diff) |
yt-dlp --prefer-free-formats option fails on youtube.com
-rw-r--r-- | downloader.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/downloader.lisp b/downloader.lisp index cafe46b..903c248 100644 --- a/downloader.lisp +++ b/downloader.lisp @@ -66,7 +66,7 @@ (trackinfo-file (trackinfo-file tmpdir tmpname))) (uiop:run-program - (format nil "youtube-dl --format-sort aext --prefer-free-formats --playlist-end 1 --write-info-json -x -o \"~a/~a.%(ext)s\" '~a'" + (format nil "yt-dlp --format-sort aext --playlist-end 1 --write-info-json -x -o \"~a/~a.%(ext)s\" '~a'" tmpdir tmpname url)) (let* ((info (trackinfo trackinfo-file)) |