diff options
author | Jan Ekström <jeebjp@gmail.com> | 2019-01-14 21:52:23 +0200 |
---|---|---|
committer | Jan Ekström <jeebjp@gmail.com> | 2019-02-10 03:30:52 +0200 |
commit | 100bfac6d6ecb3447dc3ac4b9d2c41085da59a8b (patch) | |
tree | 1a30c271740d23967e4bb587107fa37eb616500c /doc/decoders.texi | |
parent | 5c515b5f7d64fb1fccc3e99cd50f01bfbdd2a794 (diff) | |
download | ffmpeg-100bfac6d6ecb3447dc3ac4b9d2c41085da59a8b.tar.gz |
add libaribb24 ARIB STD-B24 caption decoder
* Outputs ASS lines with basic coloring and font scaling for each
given region.
* Sets the default style to the resolution of the subtitle plane
(for example, 960x540 / 36pt font for profile A).
* Has options to:
* Disable ruby text (which is coded as regions which have
half-height text in libaribb24).
Enabled by default as without positioning ruby text only
confuses as it is usually coded in the beginning of the decoded
subtitle line.
* Set the working directory, in which libaribb24 will read
configuration as well as into which it may save broadcast extra
symbols as PNG.
Unset by default.
The unconventional library check can be explained by the library's
current master branch being licensed as LGPLv3, but at the time of
writing the latest official release is still licensed under GPLv3.
Thus, one either has to wait for the following release, or enable
GPLv3.
Diffstat (limited to 'doc/decoders.texi')
-rw-r--r-- | doc/decoders.texi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/decoders.texi b/doc/decoders.texi index 25187e30f1..704bd60b9f 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -194,6 +194,31 @@ without this library. @chapter Subtitles Decoders @c man begin SUBTILES DECODERS +@section libaribb24 + +ARIB STD-B24 caption decoder. + +Implements profiles A and C of the ARIB STD-B24 standard. + +@subsection libaribb24 Decoder Options + +@table @option + +@item -aribb24-base-path @var{path} +Sets the base path for the libaribb24 library. This is utilized for reading of +configuration files (for custom unicode conversions), and for dumping of +non-text symbols as images under that location. + +Unset by default. + +@item -aribb24-skip-ruby-text @var{boolean} +Tells the decoder wrapper to skip text blocks that contain half-height ruby +text. + +Enabled by default. + +@end table + @section dvbsub @subsection Options |