diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-10-03 17:24:06 -0500 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-04 01:37:31 +0200 |
commit | a2b8b163004e643d27d85dcafd220c0ffcce8f59 (patch) | |
tree | 861a5084a9a6657b56a282e9f4a44f0c980bc474 /doc | |
parent | 76e3f8242d607ac0394b7894196f83f8d02ce5ca (diff) | |
download | ffmpeg-a2b8b163004e643d27d85dcafd220c0ffcce8f59.tar.gz |
lavf: add chromaprint muxer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/muxers.texi | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 86ca4ad767..91d131f9bd 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -37,6 +37,41 @@ ID3v2.3 and ID3v2.4) are supported. The default is version 4. @end table +@anchor{chromaprint} +@section chromaprint + +Chromaprint fingerprinter + +This muxer feeds audio data to the Chromaprint library, which generates +a fingerprint for the provided audio data. It takes a single signed +native-endian 16-bit raw audio stream. + +@subsection Options + +@table @option +@item silence_threshold +Threshold for detecting silence, ranges from 0 to 32767. -1 for default +(required for use with the AcoustID service). + +@item algorithm +Algorithm index to fingerprint with. + +@item fp_format +Format to output the fingerprint as. Accepts the following options: +@table @samp +@item raw +Binary raw fingerprint + +@item compressed +Binary compressed fingerprint + +@item base64 +Base64 compressed fingerprint + +@end table + +@end table + @anchor{crc} @section crc |