diff options
author | Max Kellermann <max@musicpd.org> | 2017-01-10 23:05:04 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-01-10 23:05:04 +0100 |
commit | 142fdc8d86d26ebf478d87fc751181fd578e8c70 (patch) | |
tree | cddd58ac214c60344dc13bb2ad6b016a6d8e1e9c /doc | |
parent | 67778dcd3d2b8760ca3bfcd4e51894a2c99d8e2c (diff) |
decoder/flac: add options "probesize" and "analyzeduration"
https://bugs.musicpd.org/view.php?id=3876
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/user.xml b/doc/user.xml index a3add674d..b9797d03a 100644 --- a/doc/user.xml +++ b/doc/user.xml @@ -2206,6 +2206,48 @@ run</programlisting> Decodes various codecs using <application>FFmpeg</application>. </para> + + <informaltable> + <tgroup cols="2"> + <thead> + <row> + <entry>Setting</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry> + <varname>analyzeduration</varname> + <parameter>VALUE</parameter> + </entry> + <entry> + Sets the FFmpeg muxer option + <varname>analyzeduration</varname>, which specifies + how many microseconds are analyzed to probe the + input. The <ulink + url="https://ffmpeg.org/ffmpeg-formats.html">FFmpeg + formats documentation</ulink> has more information. + </entry> + </row> + + <row> + <entry> + <varname>probesize</varname> + <parameter>VALUE</parameter> + </entry> + <entry> + Sets the FFmpeg muxer option + <varname>probesize</varname>, which specifies + probing size in bytes, i.e. the size of the data to + analyze to get stream information. The <ulink + url="https://ffmpeg.org/ffmpeg-formats.html">FFmpeg + formats documentation</ulink> has more information. + </entry> + </row> + </tbody> + </tgroup> + </informaltable> </section> <section id="flac_decoder"> |