diff options
author | Yoni Rabkin <yoni@rabkins.net> | 2016-11-07 18:15:04 -0500 |
---|---|---|
committer | Yoni Rabkin <yoni@rabkins.net> | 2016-11-07 18:15:04 -0500 |
commit | 6736d2e86d2909ef44759b1162e006bd5cc07547 (patch) | |
tree | c93b12891e8f1f864d4b5c753971667701e9fd0d /doc/emms.texinfo | |
parent | 591dbffe1449b5ba80885f2ce37ada4351d6417d (diff) |
* lisp/emms-stream-info.el: Remove preference and document.
Removes the built-in preference for mplayer, but also clearly documents
how one would go about choosing either mplayer or vlc to query the
streams.
Diffstat (limited to 'doc/emms.texinfo')
-rw-r--r-- | doc/emms.texinfo | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/doc/emms.texinfo b/doc/emms.texinfo index 457a2d3..60a8957 100644 --- a/doc/emms.texinfo +++ b/doc/emms.texinfo @@ -2288,9 +2288,28 @@ invoking: (require 'emms-streams) @end lisp -The Emms interface for streaming audio is enabled by default in the -`emms-all' setup level. For more information about Emms setup levels -see @xref{Setup}. +Querying the streams for track information is provided by the +@file{emms-stream-info.el} package and can be loaded with: + +@lisp +(require 'emms-stream-info) +@end lisp + +The Emms interface for streaming audio, and the stream query +capabilites are enabled by default in the `emms-all' setup level. For +more information about Emms setup levels see @xref{Setup}. + +`emms-stream-info' calls a backend program to query the stream for +information. The preferred program needs to be specified by setting +the variable @var{emms-stream-info-backend} either `mplayer' or +`vlc'. For instance: + +@lisp +(setq emms-stream-info-backend 'vlc) +@end lisp + +Obviously, the corresponding program needs to be installed and +available for Emms to invoke. Enter the emms-streams interface by invoking @kbd{M-x} @command{emms-streams}. The emms-streams interface comes with a |