diff options
author | wm4 <wm4@nowhere> | 2013-06-02 19:57:37 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-06-03 22:40:07 +0200 |
commit | d5520d20b26e7363882e9f1ebce7a5524a12321b (patch) | |
tree | 944cb65091de7552db2c1c28d66048dd1a216fb3 /DOCS | |
parent | 74e3ac8bf885dad5b6d33fc8d2c714dd91c18b47 (diff) | |
download | mpv-d5520d20b26e7363882e9f1ebce7a5524a12321b.tar.bz2 mpv-d5520d20b26e7363882e9f1ebce7a5524a12321b.tar.xz |
sub: use libass even if -no-ass is used
The -no-ass option used to disable all use of libass completely. This
doesn't work this way anymore, and the text subtitle path has an
inherent dependency on libass. Currently -no-ass does 3 things:
1. Strip tags and formatting on display, and use a separate renderer for
the result. (Which might be the terminal, or libass via OSD code.)
2. Not loading attached fonts from Matroska files.
3. Use subreader.c instead of libass for reading .ass files.
1. and 2. are ok and what the user (probably wants), but 3. doesn't
really make sense anymore. subreader.c reads .ass files just fine, but
then does some strange things to them (something about coalescing and
re-adding newlines?), leading to even more broken display with -no-ass.
Instead of fighting with subreader.c, just use libass as loader.
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/en/options.rst | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst index a609e5f472..f626f861f6 100644 --- a/DOCS/man/en/options.rst +++ b/DOCS/man/en/options.rst @@ -90,13 +90,11 @@ - ``--aspect=16:9`` or ``--aspect=1.7777`` --ass, --no-ass - Render ASS subtitles natively, and convert text subtitles in other formats - to ASS internally (enabled by default). + Render ASS subtitles natively (enabled by default). - If ``--no-ass`` is specified, all subtitles are converted to plain text - internally. All tags and style declarations are stripped and ignored. The - subtitle renderer uses the font style as specified by the ``--sub-text-`` - options instead. + If ``--no-ass`` is specified, all tags and style declarations are stripped + and ignored on display. The subtitle renderer uses the font style as + specified by the ``--sub-text-`` options instead. *NOTE*: Using ``--no-ass`` may lead to incorrect or completely broken rendering of ASS/SSA subtitles. It can sometimes be useful to forcibly |