Changes between Version 4 and Version 5 of ExtractSubtitles
- Timestamp:
- Apr 14, 2020, 7:34:05 AM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExtractSubtitles
v4 v5 1 FFmpeg can "read" or "extract" subtitles from embedded subtitle tracks.1 FFmpeg can "read" and/or "extract" subtitles from embedded subtitle tracks. 2 2 3 3 For instance, if you run ''ffmpeg -i <my_file>'' and you see something like: … … 71 71 }}} 72 72 73 The ones with capital E you can convert into (subrip, ass, webvtt), ex: 74 {{{ 75 ffmpeg -i my_file.mkv -f webvtt outfile 76 }}} 77 or implied by file extension: 78 {{{ 79 ffmpeg -i my_file.mkv outfile.vtt 80 }}} 81 or one subtitle type file to another: 82 {{{ 83 ffmpeg -i my_file.srt outfile.vtt 84 }}} 85 73 86 If there are multiple subtitle tracks in your video file, then by default it will select only the first. You can use the [Map] command to select which ones you want.