mirror of
https://github.com/simon987/libscan.git
synced 2025-04-05 12:23:00 +00:00
Fix subtitle problems
This commit is contained in:
parent
58c0758301
commit
598e748214
@ -119,6 +119,10 @@ static void read_subtitles(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx, i
|
|||||||
for (int i = 0; i < subtitle.num_rects; i++) {
|
for (int i = 0; i < subtitle.num_rects; i++) {
|
||||||
const char *text = subtitle.rects[i]->ass;
|
const char *text = subtitle.rects[i]->ass;
|
||||||
|
|
||||||
|
if (text == NULL) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
char *idx = strstr(text, "\\N");
|
char *idx = strstr(text, "\\N");
|
||||||
if (idx != NULL && strlen(idx + 2) > 1) {
|
if (idx != NULL && strlen(idx + 2) > 1) {
|
||||||
text_buffer_append_string0(&tex, idx + 2);
|
text_buffer_append_string0(&tex, idx + 2);
|
||||||
@ -339,7 +343,6 @@ void parse_media_format_ctx(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx,
|
|||||||
APPEND_STR_META(doc, MetaMediaAudioCodec, desc->name)
|
APPEND_STR_META(doc, MetaMediaAudioCodec, desc->name)
|
||||||
}
|
}
|
||||||
|
|
||||||
append_audio_meta(pFormatCtx, doc);
|
|
||||||
audio_stream = i;
|
audio_stream = i;
|
||||||
}
|
}
|
||||||
} else if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
|
} else if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
|
||||||
@ -377,6 +380,10 @@ void parse_media_format_ctx(scan_media_ctx_t *ctx, AVFormatContext *pFormatCtx,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (audio_stream != -1) {
|
||||||
|
append_audio_meta(pFormatCtx, doc);
|
||||||
|
}
|
||||||
|
|
||||||
if (video_stream != -1 && ctx->tn_size > 0) {
|
if (video_stream != -1 && ctx->tn_size > 0) {
|
||||||
AVStream *stream = pFormatCtx->streams[video_stream];
|
AVStream *stream = pFormatCtx->streams[video_stream];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user