Doc updates for 0.13.0
git-svn-id: https://svn.musicpd.org/mpd/trunk@5786 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
ef0397bf5b
commit
59342df8f3
45
AUTHORS
45
AUTHORS
|
@ -1,10 +1,41 @@
|
|||
Developer -> Warren Dukes <warren.dukes@gmail.com>
|
||||
Developer -> tw-nym
|
||||
audiofile support and command.c cleanup -> normalperson
|
||||
setuid patch -> Nagilum
|
||||
'next' and 'previous' patch -> Niklas Hofer
|
||||
command.c and signal handling cleanup -> mackstann
|
||||
replayGain -> AliasMrJones
|
||||
Current Developers
|
||||
------------------
|
||||
Warren Dukes <warren.dukes@gmail.com>
|
||||
general
|
||||
|
||||
J. Alexander Treuman <jat@spatialrift.net>
|
||||
general, mp3, id3tag, pulseaudio
|
||||
|
||||
Eric Wong <normalperson@yhbt.net>
|
||||
general, FLAC, mpd-ke branch
|
||||
|
||||
José Anarch <anarchsss@gmail.com>
|
||||
JACK plugin
|
||||
|
||||
Guus Sliepen <guus@sliepen.eu.org>
|
||||
libsamplerate code
|
||||
|
||||
Jim Ramsay <i.am@jimramsay.com>
|
||||
Zerconf/avahi support
|
||||
|
||||
Qball Cow <qballcow@gmail.com>
|
||||
Playlist commands
|
||||
|
||||
Former Developers
|
||||
------------------
|
||||
tw-nym
|
||||
|
||||
Nagilum
|
||||
setuid
|
||||
|
||||
Niklas Hofer
|
||||
'next' and 'previous' patch
|
||||
|
||||
mackstann
|
||||
command.c and signal handling cleanup
|
||||
|
||||
AliasMrJones
|
||||
replayGain
|
||||
|
||||
mp4ff copyrighted by M. Bakker, Ahead Software AG, http://www.nero.com
|
||||
compress.[ch] copyrighted by fluffy <fluffy@beesbuzz.biz>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
ver 0.13.0 (????/??/??)
|
||||
ver 0.13.0 (2007/??/??)
|
||||
* New JACK audio output
|
||||
* Support for "file" as an alternative to "filename" in search, find, and list
|
||||
* FLAC 1.1.3 support
|
||||
* FLAC 1.1.3 API support
|
||||
* New playlistadd command for adding to stored playlists
|
||||
* New playlistclear command for clearing stored playlists
|
||||
* Fix a bug where "find any" and "list <type> any" wouldn't return any results
|
||||
|
|
17
INSTALL
17
INSTALL
|
@ -43,7 +43,8 @@ For FLAC support. You will need version 1.1.0 or higher of libflac.
|
|||
|
||||
OggFLAC - http://www.xiph.org/ogg/vorbis/ and http://flac.sourceforge.net/
|
||||
For OggFLAC support. You will need liboggflac, which can be built from the
|
||||
FLAC sources if libogg is already installed.
|
||||
FLAC sources if libogg is already installed. Versions of flac 1.1.3 and
|
||||
greater will automatically detect and use OggFLAC if it's available.
|
||||
|
||||
Audio File - http://www.68k.org/~michael/audiofile/
|
||||
For WAVE, AIFF, and AU support. You will need libaudiofile.
|
||||
|
@ -57,6 +58,15 @@ For Musepack support.
|
|||
MikMod - http://mikmod.raphnet.net/
|
||||
For MOD support. You will need libmikmod.
|
||||
|
||||
Optional Miscellaneous Dependencies
|
||||
-----------------------------------
|
||||
|
||||
Avahi - http://avahi.org/
|
||||
For Zeroconf support.
|
||||
|
||||
libsamplerate - http://www.mega-nerd.com/SRC/
|
||||
For advanced samplerate conversions.
|
||||
|
||||
Download
|
||||
--------
|
||||
|
||||
|
@ -112,8 +122,7 @@ mp3's.
|
|||
Using MPD
|
||||
---------
|
||||
|
||||
You can download a web interface (phpMp) to MPD at <http://www.musicpd.org/>.
|
||||
|
||||
Also, several other clients can be found for MPD at <http://www.musicpd.org/>.
|
||||
You can download many different interfaces for MPD at
|
||||
<http://mpd.wikia.com/wiki/Clients>
|
||||
|
||||
MPD can be interfaced directly using telnet (see COMMANDS, if you are brave).
|
||||
|
|
16
README
16
README
|
@ -1,18 +1,18 @@
|
|||
|
||||
Music Player Daemon (MPD)
|
||||
Music Player Daemon (MPD)
|
||||
http://www.musicpd.org
|
||||
|
||||
A daemon for playing music (mp3, ogg vorbis, and flac). Music is played
|
||||
through the server's audio device. The daemon stores info about all available
|
||||
music, and this info can be easily searched and retrieved. Player control, info
|
||||
A daemon for playing music of various formats. Music is played through the
|
||||
server's audio device. The daemon stores info about all available music,
|
||||
and this info can be easily searched and retrieved. Player control, info
|
||||
retrieval, and playlist management can all be managed remotely.
|
||||
|
||||
To install MPD, see INSTALL.
|
||||
|
||||
MPD includes 3 libraries in the source. libid3tag and libmad are released under
|
||||
the GPL and copyrighted by Robert Leslie (http://www.underbit.com/products/mad).
|
||||
mp4ff is released under the GPL and copyrighted by M. Bakker, Ahead Software AG
|
||||
(http://www.nero.com) and is distributed as a part of the FAAD2 - Freeware
|
||||
MPD includes mp4ff in the source, due to licensing issues of the newer
|
||||
version and includes bugfixes with the properly licensed version. mp4ff is
|
||||
released under the GPL and copyrighted by M. Bakker, Ahead Software AG
|
||||
(http://www.nero.com) and is distributed as a part of the FAAD2 - Freeware
|
||||
Advance Audio (AAC) Decoder.
|
||||
|
||||
MPD is released under the GNU Public License.
|
||||
|
|
|
@ -1,5 +1,13 @@
|
|||
Music Player Daemon (MPD) - UPGRADING
|
||||
|
||||
Upgrading to 0.13.0
|
||||
-------------------
|
||||
|
||||
JACK and libsamplerate have been added as optional dependencies (see
|
||||
zeroconf_name and samplerate_converter, respectively). Added
|
||||
gapless_mp3_playback, update to the latest mpdconf.example in the docs
|
||||
directory. FLAC/OggFLAC now supports the 1.1.13 API.
|
||||
|
||||
Upgrading to 0.12.0
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -237,6 +237,10 @@ tags may be specified as a comma separated list. An example value is
|
|||
"artist,album,title,track". The special value "none" may be used alone to
|
||||
disable all metadata. The default is to use all known tag types except for
|
||||
comments.
|
||||
.TP
|
||||
.B zeroconf_name <name>
|
||||
If Zerconf is compiled into MPD, this is the service name to publish. This should
|
||||
be unique to your local network, but name collisions will properly dealt with.
|
||||
.SH REQUIRED AUDIO OUTPUT PARAMETERS
|
||||
.TP
|
||||
.B type <type>
|
||||
|
|
Loading…
Reference in New Issue