aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-setup.el
diff options
context:
space:
mode:
authorPierre Neidhardt <ambrevar@gmail.com>2018-04-09 11:37:08 +0530
committerPierre Neidhardt <ambrevar@gmail.com>2018-04-09 11:50:03 +0530
commit58c83cf6c640bc241fb933ce743d1876bbcbba8c (patch)
tree96dab7acfceec73ae469c4d075d97d7d3bd1a832 /lisp/emms-setup.el
parent949f9b9e5f43be7a9b665f8bbaa7082a238d3336 (diff)
* lisp/emms-info-opusinfo.el: Add support for Opus info queries
Diffstat (limited to 'lisp/emms-setup.el')
-rw-r--r--lisp/emms-setup.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emms-setup.el b/lisp/emms-setup.el
index 3c214fe..47260b5 100644
--- a/lisp/emms-setup.el
+++ b/lisp/emms-setup.el
@@ -81,6 +81,7 @@ the stable features which come with the Emms distribution."
(require 'emms-info)
(require 'emms-info-mp3info)
(require 'emms-info-ogginfo)
+ (require 'emms-info-opusinfo)
(require 'emms-cache)
(require 'emms-mode-line)
(require 'emms-mark)
@@ -113,6 +114,8 @@ the stable features which come with the Emms distribution."
(add-to-list 'emms-info-functions 'emms-info-mp3info))
(when (executable-find emms-info-ogginfo-program-name)
(add-to-list 'emms-info-functions 'emms-info-ogginfo))
+ (when (executable-find emms-info-opusinfo-program-name)
+ (add-to-list 'emms-info-functions 'emms-info-opusinfo))
(setq emms-track-description-function 'emms-info-track-description)
(when (fboundp 'emms-cache) ; work around compiler warning
(emms-cache 1))