Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2010-01-16 | audio_format: support packed 24 bit samples | Max Kellermann | 1 | -0/+11 | |
2009-11-14 | decoder/mikmod: sample rate is configurable | Max Kellermann | 1 | -1/+29 | |
The new option "sample_rate" sets the sample rate for libmikmod. | |||||
2009-11-14 | doc: added decoder plugin reference | Max Kellermann | 1 | -0/+6 | |
2009-11-07 | output/jack: added option "server_name" | Max Kellermann | 1 | -0/+9 | |
2009-11-06 | output/jack: dynamic source port list | Max Kellermann | 1 | -0/+12 | |
Same as the previous patch: create up to 16 configured source ports. The plugin tries to do its best at guessing the right combination for the given input file, the number of source and destination ports. | |||||
2009-11-06 | output/jack: renamed option "ports" to "destination_ports" | Max Kellermann | 1 | -1/+1 | |
Be more clear which kind of port should be configured here. | |||||
2009-11-06 | output/jack: renamed "output ports" to "destination ports" | Max Kellermann | 1 | -1/+1 | |
Use the same name as in the libjack API documentation. | |||||
2009-11-06 | playlist: added extm3u plugin | Max Kellermann | 1 | -0/+8 | |
This new plugin parses extm3u files. Files without the "#EXTM3U" header are still parsed by the plain old "m3u" plugin. | |||||
2009-11-05 | output/jack: use jack_client_open() instead of jack_client_new() | Max Kellermann | 1 | -0/+11 | |
jack_client_new() is deprecated. This requires libjack 0.100 (released nearly 5 years ago). We havn't been testing older libjack versions anyway. As a side effect, there is the new option "autostart". | |||||
2009-11-05 | doc/user: document JACK plugin options | Max Kellermann | 1 | -0/+43 | |
2009-10-29 | httpd: add config option to limit number of clients | Viliam Mateicka | 1 | -0/+10 | |
2009-10-21 | audio_format: wildcards allowed in audio_format configuration | Max Kellermann | 1 | -4/+13 | |
An asterisk means that this attribute should not be enforced, and stays whatever it used to be. This way, some configuration values work like masks. | |||||
2009-10-16 | update: obey .mpdignore files | Max Kellermann | 1 | -0/+6 | |
2009-10-16 | doc/user.xml: added chapter "Using MPD" | Max Kellermann | 1 | -0/+56 | |
2009-10-16 | doc/user.xml: added playlist plugin reference | Max Kellermann | 1 | -9/+68 | |
2009-10-13 | playlist_list: pass configuration to playlist plugins | Max Kellermann | 1 | -0/+62 | |
This patch completes the configuration support. | |||||
2009-09-06 | doc: documented the "openal" output plugin settings | Serge Ziryukin | 1 | -0/+33 | |
2009-08-24 | output/recorder: new output plugin for recording radio streams | Max Kellermann | 1 | -0/+67 | |
The recorder plugin writes audio played by MPD to a file. This may be useful for recording radio streams. This implementation is incomplete, because support for tags is missing, and MPD should be able to record each track to a different file. | |||||
2009-07-06 | doc: documented the "shout" output plugin settings | Max Kellermann | 1 | -0/+123 | |
2009-07-06 | doc: documented the "pulse" output plugin settings | Max Kellermann | 1 | -0/+34 | |
2009-07-06 | doc: documented the "command" setting of the "pipe" output plugin | Max Kellermann | 1 | -0/+22 | |
2009-07-06 | output: use the software mixer plugin | Max Kellermann | 1 | -5/+7 | |
Do all the software volume stuff inside each output thread, not in the player thread. This allows one software mixer per output device, and also allows the user to configure the mixer type (hardware or software) for each audio output. This moves the global "mixer_type" setting into the "audio_output" section, deprecating the "mixer_enabled" flag. | |||||
2009-07-05 | conf: registered option "filter" | Max Kellermann | 1 | -0/+57 | |
Add this option to the user's manual. | |||||
2009-06-30 | doc/user: added introduction | Enrico Mioso | 1 | -3/+33 | |
- introduce a section explaining the mpd.conf format, as done in the man page: is it better to re-explain it here or ointing the user to the man page, avoiding information dupplication? - reorganizze some sections of the manual to give them a linear aspect... | |||||
2009-06-02 | doc: mark the "User's Manual" as incomplete | Max Kellermann | 1 | -0/+2 | |
2009-04-28 | output_init: added option to disable the hardware mixer | Max Kellermann | 1 | -0/+11 | |
Added the per-device option "mixer_enabled" which allows users to disable the hardware mixer of an audio output. | |||||
2009-04-25 | curl: moved proxy settings to "input" block | Max Kellermann | 1 | -0/+30 | |
The old global settings "http_proxy_host", "http_proxy_port", "http_proxy_user" and "http_proxy_password" continue to work. | |||||
2009-04-25 | doc: added input plugin documentation | Max Kellermann | 1 | -0/+93 | |
2009-04-25 | doc: added decoder documentation | Max Kellermann | 1 | -0/+56 | |
2009-04-25 | doc: added more audio output documentation | Max Kellermann | 1 | -1/+63 | |
2009-04-10 | doc: added "music directory" section | Max Kellermann | 1 | -0/+19 | |
2009-03-16 | solaris: new audio output plugin for Solaris /dev/audio | Max Kellermann | 1 | -0/+32 | |
2009-03-15 | httpd: new output plugin to replace "shout" | Max Kellermann | 1 | -0/+71 | |
Let's get rid of the "shout" plugin, and the awfully complicated icecast daemon setup! MPD can do better if it's doing the HTTP server stuff on its own. This new plugin has several advantages: - easier to set up - only one daemon, no password settings, no mount settings - MPD controls the encoder and thus already knows the packet boundaries - icecast has to parse them - MPD doesn't bother to encode data while nobody is listening This implementation is very experimental (no header parsing, ignores request URI, no icy-metadata, ...). It should be able to suport several encoders in parallel in the future (with different bit rates, different codec, ...), to make MPD the perfect streaming server. Once MPD gets multi-player support, we can even mount several different radio stations on one server. | |||||
2009-03-14 | doc: added "audio outputs" section to the user's manual | Max Kellermann | 1 | -4/+277 | |
2009-03-12 | doc: added installation manual to the User's Manual | Max Kellermann | 1 | -0/+47 | |
Very small start.. | |||||
2009-03-12 | doc: added skeleton for the user manual | Max Kellermann | 1 | -0/+38 | |