switching emms to use mpv instead of vlc

This commit is contained in:
Chris Cochrun 2023-12-05 10:53:55 -06:00
parent 71568046fc
commit 5ef28cf34d
2 changed files with 4 additions and 4 deletions

View file

@ -869,7 +869,6 @@ This is the use-package definition with a lot of customization. Need to setup au
Part of this config includes some special capture templates for my work as a youth minister. I create lessons through both org-mode and org-roam capture templates. The first part comes from org-roam, then the next is org-mode. Part of this config includes some special capture templates for my work as a youth minister. I create lessons through both org-mode and org-roam capture templates. The first part comes from org-roam, then the next is org-mode.
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package org (use-package org
:defer t
:config :config
(setq org-startup-indented t (setq org-startup-indented t
org-edit-src-content-indentation 0 org-edit-src-content-indentation 0
@ -4682,7 +4681,8 @@ Since Bongo seems kinda difficult I shall give EMMS another try.
:config :config
(emms-all) (emms-all)
(evil-collection-emms-setup) (evil-collection-emms-setup)
(setq emms-player-list '(emms-player-vlc)) (setq emms-player-list '(emms-player-mpv)
emms-player-mpv-parameters '("--quiet" "--really-quiet" "--no-audio-display" "--speed=1"))
(setq emms-source-file-default-directory "~/music/" (setq emms-source-file-default-directory "~/music/"
emms-tag-editor-tag-ogg-program "mid3v2") emms-tag-editor-tag-ogg-program "mid3v2")

View file

@ -565,7 +565,6 @@ much faster. The hope is to also make this a faster version of imenu."
(consult-imenu)) (consult-imenu))
(use-package org (use-package org
:defer t
:config :config
(setq org-startup-indented t (setq org-startup-indented t
org-edit-src-content-indentation 0 org-edit-src-content-indentation 0
@ -3451,7 +3450,8 @@ interfere with the default `bongo-playlist-buffer'."
:config :config
(emms-all) (emms-all)
(evil-collection-emms-setup) (evil-collection-emms-setup)
(setq emms-player-list '(emms-player-vlc)) (setq emms-player-list '(emms-player-mpv)
emms-player-mpv-parameters '("--quiet" "--really-quiet" "--no-audio-display" "--speed=1"))
(setq emms-source-file-default-directory "~/music/" (setq emms-source-file-default-directory "~/music/"
emms-tag-editor-tag-ogg-program "mid3v2") emms-tag-editor-tag-ogg-program "mid3v2")