You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-20 06:16:02 +02:00
movtextdec: 3GPP TS 26.245 Timed Text Decoder.
This change introduces a basic decoder for 3GPP Timed Text subtitles, also known as TX3G, Quicktime subtitles, or "movtext" in the existing code. This initial change doesn't attempt to parse styling information, and just reads the plain text of the subtitles. I intend to add support for styles eventually, but it's challenging due to a lack of existing players that support them. Signed-off-by: Philip Langdale <philipl@overt.org>
This commit is contained in:
@ -409,6 +409,7 @@ void avcodec_register_all(void)
|
||||
REGISTER_ENCDEC (DVDSUB, dvdsub);
|
||||
REGISTER_DECODER (JACOSUB, jacosub);
|
||||
REGISTER_DECODER (MICRODVD, microdvd);
|
||||
REGISTER_DECODER (MOVTEXT, movtext);
|
||||
REGISTER_DECODER (PGSSUB, pgssub);
|
||||
REGISTER_DECODER (REALTEXT, realtext);
|
||||
REGISTER_DECODER (SAMI, sami);
|
||||
|
Reference in New Issue
Block a user