summaryrefslogtreecommitdiff
path: root/libavcodec/webvttenc.c
Commit message (Collapse)AuthorAge
* lavc: deprecate decoded ass subtitles with timingsClément Bœsch2016-02-26
|
* lavc: allow subtitle text format to be ASS without timingClément Bœsch2016-02-26
|
* avcodec/webvttenc: do not use EOVERFLOW.Clément Bœsch2014-05-25
| | | | | According to doc/errno.txt EOVERFLOW is not available everywhere. The use of -1 is consistent with avcodec/srtenc.c.
* avcodec/webvttenc: add webvtt encoderAman Gupta2014-05-25
Based off the srt encoder. The following features are unimplemented: - fonts, colors, sizes - alignment and positioning The rest works well. For example, use ffmpeg to convert subtitles into the .vtt format: ffmpeg -i input.srt output.vtt Signed-off-by: Aman Gupta <ffmpeg@tmm1.net> Signed-off-by: Clément Bœsch <u@pkh.me>