diff options
author | Andrée Ekroth <andree.ekroth@gmail.com> | 2014-01-12 21:40:29 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-13 11:14:19 +0100 |
commit | ea771c17c55395b34d8ee3f8073a89d401c85835 (patch) | |
tree | 3ee0dc6192b403baa7a1a4a03d7bc8b72221a60b /doc | |
parent | 65ebfb16c90f7c0921983009775b1a2414371d94 (diff) | |
download | mpd-ea771c17c55395b34d8ee3f8073a89d401c85835.tar.gz mpd-ea771c17c55395b34d8ee3f8073a89d401c85835.tar.xz mpd-ea771c17c55395b34d8ee3f8073a89d401c85835.zip |
Shine encoding plugin
This encoding plugin features a fixed-point mp3 encoder,
with faster encoding on architectures without a FPU.
Right now the encoder is limited to stereo and 16 bit depth.
The bitrate and sample rate can be modified in audio_output.
audio_output {
type "httpd"
name "My shine stream"
encoder "shine"
port "8000"
format "44100:16:2"
bitrate "320" # default: 128
}
Diffstat (limited to '')
-rw-r--r-- | doc/user.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/user.xml b/doc/user.xml index 2350f8fef..a49f025b2 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -1370,6 +1370,35 @@ systemctl start mpd.socket</programlisting> </section> <section> + <title><varname>shine</varname></title> + + <para> + Encodes into MP3 using the shine library. + </para> + + <informaltable> + <tgroup cols="2"> + <thead> + <row> + <entry>Setting</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry> + <varname>bitrate</varname> + </entry> + <entry> + Sets the bit rate in kilobit per second. + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </section> + + <section> <title><varname>twolame</varname></title> <para> |