I have an AVI file (mpeg4 video) with 3 subtitle streams. I need to extract the second stream to SRT/txt in order to make some corrections to the translation. I'm currently on an Ubuntu machine.
I tried using avconv, but I was getting errors. Here is the result of 'avconv -i':
Stream #0.0: Video: mpeg4 (Advanced Simple Profile), yuv420p ...
Stream #0.1: Audio: ac3, 48000 Hz, 5.1, s16, 448 kb/s
Stream #0.2: Subtitle: srt
Stream #0.3: Subtitle: srt
Stream #0.4: Subtitle: srt
And here is the command I initially tried: 'avconv -i video.avi -map 0:3 subs.srt'
This gave me an error: 'Encoder (codec id 0) not found for output stream #0:0'
Any help? Forgive me if this seems like a simple problem -- I am a bit new to this.
avconv
is a fork off the originalffmpeg
and often has less features.On my Ubuntu 13.04 (raring) I get this info in a terminal:
You can list the codecs for encoding any data know to
avconv
into an output file withavconv -codecs
. That's a long list. To filter it down for encoding (E
) and for subtitles (S
) we can grep those lines:As you can see there's no entry for
srt
. Bummer.The latest
ffmpeg
has it:So if you use any reasonably current
ffmpeg
, you'll probably have it working with the command line which you already used. As both tools use the same code base, most of the command line options work the same.Look at my answer here and the paragraph ffmpeg setup to see where to download it from. Very easy to do, and you don't even have to become root.