How to add Subtitles(.SRT files) to video in Exoplayer android?

前端 未结 6 833
眼角桃花
眼角桃花 2020-12-28 10:03

i am working on a project where i should play .srt files along with video in android. I was working through the samples of Exoplayer but cant able to play .srt files with vi

6条回答
  •  情歌与酒
    2020-12-28 10:40

    SubtitleView subtitleView=(SubtitleView)findViewById(com.google.android.exoplayer2.R.id.exo_subtitles); 
    player.setTextOutput(new ComponentListener());
    
    public class ComponentListener implements TextRenderer.Output{
      @Override
      public void onCues(List cues) {
        if (subtitleView != null) {
            subtitleView.onCues(cues);
        }
      }
    

    }

    To show/hide the subtitleView:

    subtitleView.setVisiblity(Visible/Gone);
    

提交回复
热议问题