使用avcodec_decode_subtitle2(FFmpeg)提取(demux)字幕

时间:2018-05-20 08:46:17

标签: c++ ffmpeg ifstream subtitle

我找到了一些代码,编辑了一下以打印字幕文本,但我不确定如何将字幕保存到文件中(从视频文件中提取,例如mkv)

下一个代码只会打印很多行,而不是所有行都包含字幕文本

std::ofstream out ("/path/to/extracted/subtitles.srt");

while(av_read_frame(pFormatCtx, &pkt) == 0) {
    int got_frame = 0;
    int ret = avcodec_decode_subtitle2(aCodecCtx, subtitle, &got_frame, &pkt);
    if (ret >= 0 && got_frame) {
        AVSubtitleRect **rects = subtitle->rects;
        for (i = 0; i < subtitle->num_rects; i++) {
            AVSubtitleRect rect = *rects[i];
            if (rect.type == SUBTITLE_ASS) {
                printf("ASS %s", rect.ass);
            } else if (rect.x == SUBTITLE_TEXT) {;
                printf("TEXT %s", rect.text);
            }
        }
        // it just writes some big file (similar to videofile size)
        //out.write((char*)pkt.data, pkt.size);
    }
}
out.close();
//... 

1 个答案:

答案 0 :(得分:0)

您正在针对SUBTITLE_TEXT检查“ rect.x”,该名称应为“ rect.type”,如上面的条件所示。