diff options
author | Max Kellermann <max@duempel.org> | 2010-02-08 10:19:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-02-08 11:11:43 +0100 |
commit | 059d1dc7f252f933ba1c6a9b69116d3eb53c9771 (patch) | |
tree | 8ca576486860e041023687df91376f9524afe008 /doc/protocol.xml | |
parent | 7fbb856eee2007570e776ddedf591de65f06aefb (diff) | |
download | mpd-059d1dc7f252f933ba1c6a9b69116d3eb53c9771.tar.gz mpd-059d1dc7f252f933ba1c6a9b69116d3eb53c9771.tar.xz mpd-059d1dc7f252f933ba1c6a9b69116d3eb53c9771.zip |
command: "listplaylist" dumps playlist files
Same for "listplaylistinfo".
Diffstat (limited to '')
-rw-r--r-- | doc/protocol.xml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/doc/protocol.xml b/doc/protocol.xml index 1f053acaa..4ed1878c8 100644 --- a/doc/protocol.xml +++ b/doc/protocol.xml @@ -960,6 +960,20 @@ OK <section> <title>Stored playlists</title> + <para> + Playlists are stored inside the configured playlist directory. + They are addressed with their file name (without the directory + and without the <filename>.m3u</filename> suffix). + </para> + + <para> + Some of the commands described in this section can be used to + run playlist plugins instead of the hard-coded simple + <filename>m3u</filename> parser. They can access playlists in + the music directory (relative path including the suffix) or + remote playlists (absolute URI with a supported scheme). + </para> + <variablelist> <varlistentry id="command_listplaylist"> <term> @@ -970,8 +984,8 @@ OK </term> <listitem> <para> - Lists the files in the playlist - <filename>NAME.m3u</filename>. + Lists the songs in the playlist. Playlist plugins are + supported. </para> </listitem> </varlistentry> @@ -984,7 +998,8 @@ OK </term> <listitem> <para> - Lists songs in the playlist <filename>NAME.m3u</filename>. + Lists the songs with metadata in the playlist. Playlist + plugins are supported. </para> </listitem> </varlistentry> @@ -1016,8 +1031,8 @@ OK </term> <listitem> <para> - Loads the playlist <filename>NAME.m3u</filename> from - the playlist directory. + Loads the playlist into the current queue. Playlist + plugins are supported. </para> </listitem> </varlistentry> |