aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-01-17 22:51:48 -0500
committerJesús <heckyel@hyperbola.info>2021-01-17 22:51:48 -0500
commit760deafd201abad58b04c6a8d7fa478df72b8eda (patch)
tree8f6b9195678d1bb62868ef85a5bfa1f1dadbbbd8
parentacbd7fa835fe10acbdcfa36cc824e87815cc4bc0 (diff)
downloadlivie-760deafd201abad58b04c6a8d7fa478df72b8eda.tar.lz
livie-760deafd201abad58b04c6a8d7fa478df72b8eda.tar.xz
livie-760deafd201abad58b04c6a8d7fa478df72b8eda.zip
Fix mpv format
-rw-r--r--livie.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/livie.el b/livie.el
index b9cf25f..180ad17 100644
--- a/livie.el
+++ b/livie.el
@@ -458,10 +458,10 @@ If ARG is given, make a new search."
(if (equal (livie--get-entry-type (livie-get-current-video)) 'video)
(let* ((video (livie-get-current-video))
(id (livie-video-id video)))
- (start-process "livie mpv" nil
+ (start-process "livie-mpv" nil
"mpv"
(concat "https://www.youtube.com/watch?v=" id
- "--ytdl-format=bestvideo[vcodec!=av01.0.05M.08]+bestaudio/best[vcodec!=av01.0.05M.08]"))
+ " --ytdl-format='bestvideo[vcodec!=av01.0.05M.08]+bestaudio/best[vcodec!=av01.0.05M.08]'"))
(message "Starting streaming..."))
(message "It's not a video")))