diff options
author | yonirabkin <yonirabkin> | 2006-03-23 12:53:00 +0000 |
---|---|---|
committer | yonirabkin <mwolson@gnu.org> | 2006-03-23 12:53:00 +0000 |
commit | 8ace62a9927e23b188e25b5464c82351a4b92fa2 (patch) | |
tree | b71b6b69e5eab95ec06ad0af9e26ea7623ecf529 | |
parent | 147707e5c30059c297ee448c915627e377cff6a6 (diff) |
Added `emms-playlist-sort' to the Emms manual.
darcs-hash:20060323125334-be80e-cba5ae5567623d231f81df0b1331905cd9ccf50f.gz
-rw-r--r-- | emms.texinfo | 47 | ||||
-rw-r--r-- | gpl.texi | 2 |
2 files changed, 47 insertions, 2 deletions
diff --git a/emms.texinfo b/emms.texinfo index d0084e7..a952ab0 100644 --- a/emms.texinfo +++ b/emms.texinfo @@ -63,8 +63,11 @@ Emms basics Advanced Features * Track Information:: More narrative track descriptions. * Interactive Playlists:: Interactive Playlists. -* Extending Emms:: How to define new players and modules. + +Modules and Extensions +* Sorting Playlists:: Sorting the order of the tracks. * Streaming Audio:: Interface to streaming audio. +* Extending Emms:: How to define new players and modules. Copying and license * Copying:: The GNU General Public License gives you permission to @@ -987,6 +990,48 @@ from @file{emms-player-simple.el} Now we have a ready player and we could add commands like @command{emms-mpg321-remote-pause} for example. +@node Sorting Playlists +@chapter Sorting Playlists + +@cindex sort +@cindex track order + +The `emms-playlist-sort' module, defined in the +@file{emms-playlist-sort.el} package provides functions for sorting +Emms playlists. `emms-playlist-sort' can be loaded by invoking: + +@lisp +(require 'emms-playlist-sort) +@end lisp + +@defun emms-playlist-sort-by-name +Sort playlist by name in ascending order. +@end defun + +@defun emms-playlist-sort-by-info-artist +Sort playlist by artist in ascending order. +@end defun + +@defun emms-playlist-sort-by-info-title +Sort playlist by title in ascending order. +@end defun + +@defun emms-playlist-sort-by-info-album +Sort playlist by album in ascending order. +@end defun + +@defun emms-playlist-sort-by-info-year +Sort playlist by year in ascending order. +@end defun + +@defun emms-playlist-sort-by-info-note +Sort playlist by notes in ascending order. +@end defun + +@defun emms-playlist-sort-by-score +Sort emms playlist by score in descending order. +@end defun + @node Streaming Audio @chapter Streaming Audio @@ -1,4 +1,4 @@ -@node Copying, The GNU FDL, Streaming Audio, Top +@node Copying, The GNU FDL, Extending Emms, Top @unnumbered GNU GENERAL PUBLIC LICENSE @center Version 2, June 1991 |