Changes between Version 14 and Version 15 of HowToBurnSubtitlesIntoVideo
- Timestamp:
- May 2, 2014, 12:58:51 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToBurnSubtitlesIntoVideo
v14 v15 4 4 Draw subtitles on top of input video using the libass library. This filter requires `ffmpeg` to be compiled with `--enable-libass`. See the [http://ffmpeg.org/ffmpeg-filters.html#subtitles-1 subtitles video filter documentation] for more details. 5 5 6 If the subtitle is a separate file called `subtitle.srt`, you can use this command: 6 7 {{{ 7 8 ffmpeg -i video.avi -vf subtitles=subtitle.srt out.avi 8 9 }}} 9 10 10 This filter can load embedded subtitles from container 11 If the subtitle is embedded in the container `video.mkv`, you can do this: 11 12 12 13 {{{ … … 29 30 Windows users will have to [http://ffmpeg.zeranoe.com/forum/viewtopic.php?f=10&t=318&start=20 setup font paths] to get libass to work 30 31 31 == picturebased subtitles ==32 == Picture-based subtitles == 32 33 33 You can burn "picture based" subtitles into a movie as well (for instance, dvdsub is a type of picture based overlay subtitles), by using the [http://ffmpeg.org/ffmpeg-filters.html#overlay-1 overlay video filter] to overlay the images. Example of an MKV with dvdsub subtitles in a separate stream:34 You can burn "picture-based" subtitles into a movie as well, by using the [http://ffmpeg.org/ffmpeg-filters.html#overlay-1 overlay video filter] to overlay the images. For instance, dvdsub is a type of picture-based overlay subtitles. Example of an MKV with dvdsub subtitles in a separate stream: 34 35 35 36 {{{
