aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yeetube.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/yeetube.el b/yeetube.el
index 261f294..f90aaa9 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -265,12 +265,12 @@ PREFIX [[URL/watch?v=VIDEOID][VIDEOTITLE ]]"
(async-shell-command
(if yeetube-download-audio-format
(format "%s %s --extract-audio --audio-format %s"
- (shell-quote-argument yeetube--yt-dlp)
+ (shell-quote-argument yeetube--yt-dlp)
(shell-quote-argument url)
(shell-quote-argument yeetube-download-audio-format))
(format "%s %s"
- (shell-quote-argument yeetube--yt-dlp)
- (shell-quote-argument url)))
+ (shell-quote-argument yeetube--yt-dlp)
+ (shell-quote-argument url)))
(message "Downloading %s " url))))))
(defun yeetube-download-videos ()
@@ -309,12 +309,12 @@ then run this command interactively."
(async-shell-command
(if yeetube-download-audio-format
(format "%s %s --extract-audio --audio-format %s -o %s"
- (shell-quote-argument yeetube--yt-dlp)
+ (shell-quote-argument yeetube--yt-dlp)
(shell-quote-argument url)
(shell-quote-argument yeetube-download-audio-format)
(shell-quote-argument name))
(format "%s %s -o %s"
- (shell-quote-argument yeetube--yt-dlp)
+ (shell-quote-argument yeetube--yt-dlp)
(shell-quote-argument url)
(shell-quote-argument name)))
buffer-name)