aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-player-mpv.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2018-04-09 13:46:02 -0400
committerYoni Rabkin <yoni@rabkins.net>2018-04-09 13:46:02 -0400
commitd77202aed79efad2df3b87fc3db3897474da82b7 (patch)
tree5fd90bd69824db9da7e9328d05be2f6d68cd6f78 /lisp/emms-player-mpv.el
parentcbfcaeda1f05292994f1725471cb2799664f078e (diff)
* lisp/emms-player-mpv.el: don't show albums
Add "--no-audio-display" to the mpv backend by default.
Diffstat (limited to 'lisp/emms-player-mpv.el')
-rw-r--r--lisp/emms-player-mpv.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emms-player-mpv.el b/lisp/emms-player-mpv.el
index 6d67f8c..45a43d7 100644
--- a/lisp/emms-player-mpv.el
+++ b/lisp/emms-player-mpv.el
@@ -33,9 +33,10 @@
;; To load subtitles automatically,
;; put "`sub-auto=fuzzy"` in the mpv's config file.
;;
-;; To disable the cover display when playing music, use the following:
-;; (add-to-list 'emms-player-mpv-parameters "--no-audio-display")
-;; Alternatively you can also add "audio-display=no" to mpv's config file.
+;; To disable/enable the cover display when playing music, modify
+;; `emms-player-mpv-parameters'. For example: (add-to-list
+;; 'emms-player-mpv-parameters "--no-audio-display") Alternatively
+;; you can also add "audio-display=no" to mpv's config file.
;;
;; This file is based on `emms-player-mplayer.el'. It was originally hosted at
;; https://github.com/dochang/emms-player-mpv.
@@ -59,7 +60,7 @@
"rm" "rmvb" "mp4" "flac" "vob" "m4a" "ape"
"flv" "webm" "m4b" "m4p" "m4v" "m4r" "3gp"
"aac"))
- "mpv" "--quiet" "--really-quiet")
+ "mpv" "--no-audio-display" "--quiet" "--really-quiet")
(defadvice emms-player-mpv-start (around append-arguments activate)
(unless (file-exists-p emms-player-mpv-input-file)