diff options
author | Jesús <heckyel@hyperbola.info> | 2021-01-17 22:51:48 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-01-17 22:51:48 -0500 |
commit | 760deafd201abad58b04c6a8d7fa478df72b8eda (patch) | |
tree | 8f6b9195678d1bb62868ef85a5bfa1f1dadbbbd8 | |
parent | acbd7fa835fe10acbdcfa36cc824e87815cc4bc0 (diff) | |
download | livie-760deafd201abad58b04c6a8d7fa478df72b8eda.tar.lz livie-760deafd201abad58b04c6a8d7fa478df72b8eda.tar.xz livie-760deafd201abad58b04c6a8d7fa478df72b8eda.zip |
Fix mpv format
-rw-r--r-- | livie.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"))) |