diff options
author | Thanos Apollo <[email protected]> | 2023-10-14 17:50:56 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-17 09:24:22 +0300 |
commit | bba1a4c3481b8f29bb8735db9988ad2361e4e3bf (patch) | |
tree | d1ac88bf383fdf7faea7ad03fbfe2385433961d1 | |
parent | 787d24e4bc7acfe74923c341813d483544965b4c (diff) |
yeetube:(download-video) Message video title and download directory
-rw-r--r-- | yeetube.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -317,7 +317,8 @@ Optional values: (when (string-prefix-p "http" url) (let ((default-directory yeetube-download-directory)) (yeetube-download--ytdlp url nil yeetube-download-audio-format) - (message "Downloading %s " url))))) + (message "Downloading: '%s' at '%s'" + (yeetube-get :title) yeetube-download-directory))))) ;; TODO: Add option to use ffmpeg ;;;###autoload |