exoplayer在插入字幕之前先检查字幕

时间:2018-11-05 14:33:59

标签: java android exoplayer exoplayer2.x

在向exoplayer插入字幕之前,是否有一种方法可以检查.srt格式是否符合字幕的格式规范? 例如: Link

我用来插入字幕的代码:

Format textFormat = Format.createTextSampleFormat(null, MimeTypes.APPLICATION_SUBRIP, null, Format.NO_VALUE, Format.NO_VALUE, "en", null, Format.OFFSET_SAMPLE_RELATIVE);
MediaSource textMediaSource = new SingleSampleMediaSource.Factory(dataSourceFactory).createMediaSource(Uri.parse(sub), textFormat, C.TIME_UNSET);
videoSource = new MergingMediaSource(videoSource, textMediaSource);
player.prepare(videoSource, false, false);

0 个答案:

没有答案