PR #23493 opened by Bogdan Lisman (bogdanpydev) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23493 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23493.patch
The lrc muxer has a precision option controlling the number of fractional digits written in each timestamp, but it was not documented. Add it to the lrc section, including its range and default. Signed-off-by: Bogdan Lisman <[email protected]> # Summary of changes Briefly describe what this PR does and why. <!-- If this PR requires new FATE test samples, attach them to the PR and list their target paths below (relative to the fate-suite root). Attached filenames must match the sample's filename: ```fate-samples # e.g. vorbis/new-sample.ogg ``` --> >From 194790cc4a20457281283fdc04fa11b997fd3e3c Mon Sep 17 00:00:00 2001 From: Bogdan Lisman <[email protected]> Date: Sun, 14 Jun 2026 23:08:23 +0300 Subject: [PATCH] doc/muxers: document the lrc precision option The lrc muxer has a precision option controlling the number of fractional digits written in each timestamp, but it was not documented. Add it to the lrc section, including its range and default. Signed-off-by: Bogdan Lisman <[email protected]> --- doc/muxers.texi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 2b5fc3832c..5056a3e3d6 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -2761,6 +2761,14 @@ song lyrics with an audio file, such as MP3, Vorbis, or MIDI. This muxer accepts a single @samp{subrip} or @samp{text} subtitles stream. +@subsection Options +@table @option +@item precision @var{number} +Set the number of decimal digits used for the fractional (sub-second) +part of the timestamps. Range is @code{1} to @code{6}. Default is +@code{2}, i.e. centiseconds. +@end table + @subsection Metadata The following metadata tags are converted to the format corresponding metadata: -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
