Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avcodec/webvttenc: do not use EOVERFLOW. | Clément Bœsch | 2014-05-25 | 1 | -1/+1 |
| | | | | | According to doc/errno.txt EOVERFLOW is not available everywhere. The use of -1 is consistent with avcodec/srtenc.c. | ||||
* | avcodec/webvttenc: add webvtt encoder | Aman Gupta | 2014-05-25 | 1 | -0/+219 |
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> |