diff options
author | Aman Gupta <ffmpeg@tmm1.net> | 2014-05-22 21:20:34 -0700 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-05-25 03:04:14 +0200 |
commit | 4372fb7a5722a0b2aa126f4d4e6d617f237918f6 (patch) | |
tree | 267baf1675fd2da3cdd8b5f45fb84f7fbe0d770f /libavcodec/version.h | |
parent | d94e255dd114778e58b668968d99f5055112358d (diff) | |
download | ffmpeg-4372fb7a5722a0b2aa126f4d4e6d617f237918f6.tar.gz |
avcodec/webvttenc: add webvtt encoder
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>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 83bd83b9d4..4454bf1cde 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 55 -#define LIBAVCODEC_VERSION_MINOR 64 +#define LIBAVCODEC_VERSION_MINOR 65 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |