Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH 1/3] doc/muxers: add caf
@ 2024-01-15 23:57 Stefano Sabatini
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2 Stefano Sabatini
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend Stefano Sabatini
  0 siblings, 2 replies; 5+ messages in thread
From: Stefano Sabatini @ 2024-01-15 23:57 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini

---
 doc/muxers.texi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index e91a4f8e45..1bdd7d34d5 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -877,6 +877,11 @@ G.729 (.bit) file format muxer.
 
 It accepts a single G.729 audio stream.
 
+@section caf
+Apple CAF (Core Audio Format) muxer.
+
+It accepts a single audio stream.
+
 @anchor{chromaprint}
 @section chromaprint
 
-- 
2.34.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2
  2024-01-15 23:57 [FFmpeg-devel] [PATCH 1/3] doc/muxers: add caf Stefano Sabatini
@ 2024-01-15 23:57 ` Stefano Sabatini
  2024-01-22 13:22   ` Tomas Härdin
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend Stefano Sabatini
  1 sibling, 1 reply; 5+ messages in thread
From: Stefano Sabatini @ 2024-01-15 23:57 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini

---
 doc/muxers.texi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index 1bdd7d34d5..eadcba690c 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -882,6 +882,11 @@ Apple CAF (Core Audio Format) muxer.
 
 It accepts a single audio stream.
 
+@section codec2
+Codec2 audio audio muxer.
+
+It accepts a single codec2 audio stream.
+
 @anchor{chromaprint}
 @section chromaprint
 
-- 
2.34.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend
  2024-01-15 23:57 [FFmpeg-devel] [PATCH 1/3] doc/muxers: add caf Stefano Sabatini
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2 Stefano Sabatini
@ 2024-01-15 23:57 ` Stefano Sabatini
  2024-01-20 11:41   ` Stefano Sabatini
  1 sibling, 1 reply; 5+ messages in thread
From: Stefano Sabatini @ 2024-01-15 23:57 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Stefano Sabatini

In particular, apply formatting and consistency fixes and sort options
by name.
---
 doc/muxers.texi | 45 ++++++++++++++++++++++++---------------------
 1 file changed, 24 insertions(+), 21 deletions(-)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index eadcba690c..5e4ee40db4 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -889,41 +889,44 @@ It accepts a single codec2 audio stream.
 
 @anchor{chromaprint}
 @section chromaprint
+Chromaprint fingerprinter muxers.
 
-Chromaprint fingerprinter.
+To enable compilation of this filter you need to configure FFmpeg with
+@code{--enable-chromaprint}.
 
-This muxer feeds audio data to the Chromaprint library,
-which generates a fingerprint for the provided audio data. See @url{https://acoustid.org/chromaprint}
+This muxer feeds audio data to the Chromaprint library, which
+generates a fingerprint for the provided audio data. See:
+@url{https://acoustid.org/chromaprint}
 
-It takes a single signed native-endian 16-bit raw audio stream of at most 2 channels.
+It takes a single signed native-endian 16-bit raw audio stream of at
+most 2 channels.
 
 @subsection Options
-
 @table @option
-@item silence_threshold
-Threshold for detecting silence. Range is from -1 to 32767, where -1 disables
-silence detection. Silence detection can only be used with version 3 of the
-algorithm.
-Silence detection must be disabled for use with the AcoustID service. Default is -1.
-
-@item algorithm
-Version of algorithm to fingerprint with. Range is 0 to 4.
-Version 3 enables silence detection. Default is 1.
+@item algorithm @var{version}
+Select version of algorithm to fingerprint with. Range is @code{0} to
+@code{4}. Version @code{3} enables silence detection. Default is @code{1}.
 
-@item fp_format
+@item fp_format @var{format}
 Format to output the fingerprint as. Accepts the following options:
-@table @samp
-@item raw
-Binary raw fingerprint
+@item base64
+Base64 compressed fingerprint @emph{(default)}
 
 @item compressed
 Binary compressed fingerprint
 
-@item base64
-Base64 compressed fingerprint @emph{(default)}
-
+@table @samp
+@item raw
+Binary raw fingerprint
 @end table
 
+@item silence_threshold @var{threshold}
+Threshold for detecting silence. Range is from @code{-1} to
+@code{32767}, where @code{-1} disables silence detection. Silence
+detection can only be used with version @code{3} of the algorithm.
+
+Silence detection must be disabled for use with the AcoustID
+service. Default is @code{-1}.
 @end table
 
 @anchor{crc}
-- 
2.34.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend Stefano Sabatini
@ 2024-01-20 11:41   ` Stefano Sabatini
  0 siblings, 0 replies; 5+ messages in thread
From: Stefano Sabatini @ 2024-01-20 11:41 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On date Tuesday 2024-01-16 00:57:32 +0100, Stefano Sabatini wrote:
> In particular, apply formatting and consistency fixes and sort options
> by name.
> ---
>  doc/muxers.texi | 45 ++++++++++++++++++++++++---------------------
>  1 file changed, 24 insertions(+), 21 deletions(-)

Will apply this and the other pending doc/muxers patches.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2
  2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2 Stefano Sabatini
@ 2024-01-22 13:22   ` Tomas Härdin
  0 siblings, 0 replies; 5+ messages in thread
From: Tomas Härdin @ 2024-01-22 13:22 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

tis 2024-01-16 klockan 00:57 +0100 skrev Stefano Sabatini:
> ---
>  doc/muxers.texi | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/doc/muxers.texi b/doc/muxers.texi
> index 1bdd7d34d5..eadcba690c 100644
> --- a/doc/muxers.texi
> +++ b/doc/muxers.texi
> @@ -882,6 +882,11 @@ Apple CAF (Core Audio Format) muxer.
>  
>  It accepts a single audio stream.
>  
> +@section codec2
> +Codec2 audio audio muxer.
> +
> +It accepts a single codec2 audio stream.

Looks fine. It's a very simple format after all. Also I should get my
codec2 patchset through..

/Tomas
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-01-22 13:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-15 23:57 [FFmpeg-devel] [PATCH 1/3] doc/muxers: add caf Stefano Sabatini
2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 2/3] doc/muxers: add codec2 Stefano Sabatini
2024-01-22 13:22   ` Tomas Härdin
2024-01-15 23:57 ` [FFmpeg-devel] [PATCH 3/3] doc/muxers/chromaprint: review and extend Stefano Sabatini
2024-01-20 11:41   ` Stefano Sabatini

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git