Skip to main content

All Questions

Tagged with
0 votes
0 answers
146 views

How to extract subtitle from usm file

I would like to extract subtitle.txt from usm file, I tried use ffmpeg but it show unspuported file. Hexedit show that file has txt extension. Ffmpeg support demux cri usm file, but I cant figure out ...
Marcin Nancin's user avatar
1 vote
1 answer
8k views

How can I extract a subtitle in "HDMV PGS" format from a video with FFmpeg?

I'm trying to extract a subtitle in "HDMV PGS" format embedded in a video with this command ffmpeg -i Movie.mkv -map 0:s:0 subs.srt from an answer on Super User command, but it gives the ...
Idhtft's user avatar
  • 11
3 votes
1 answer
3k views

Extracting DVB_subtitles with ffmpeg fails with empty file / nothing encoded

These are the streams contained: Stream #0:0[0x247]: Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p(tv, top first), 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc Stream #...
udippel's user avatar
  • 31
0 votes
0 answers
6k views

How can I extract SRT subtitles from (MKV) video's?

I read that MKVToolNix will allow you to extract .SRT subtitles from .MKV videos. I'm using gMKVExtractGUI (v1.8.0.0) with MKVToolNix, but as the screenshot below shows it will only extract .ASS files....
Joris Groosman's user avatar
1 vote
2 answers
12k views

How to extract and merge hard-coded subtitle in a video

I downloaded a movie that has hard-coded subtitles, for some reason I don't like the font of the subtitles :P . But since it's hard-coded inside the movie, I can't extract the subtitle with MkvExtract ...
Happy Face's user avatar
0 votes
1 answer
5k views

Find all MKV, extract English subtitles, remove all subtitles, delete original MKV from subtitles removed [closed]

So far: @echo off cls set rootfolder=C:\ echo Enumerating all MKVs under %rootfolder% echo. for /r %rootfolder% %%a in (*.mkv) do ( for /f %%b in ('mkvmerge --identify-verbose "%%a" ^| find /c /i ...
David Custer's user avatar
91 votes
7 answers
183k views

How to extract subtitle from video using ffmpeg?

I am trying to extract subtitle from video as .srt file, I used the following command: ffmpeg -i mytestmovie.mkv -vn -an -codec:s:0.1 srt sub.srt But, I got an error as Unrecognized option codec:s:0:...
vijay's user avatar
  • 921
3 votes
0 answers
6k views

Extract S_VOBSUB encoded Subtitles from .MKV container as .SRT

I am working in Linux (Ubuntu) I tried to do it with ffmpeg and mkvtoolnix (mkvextract track) Problems: ffmpeg does not work with S_VOBSUB encoded subtitles mkvtoolnix converts S_VOBSUB to .idx/.sub (...
Mark Tower's user avatar