Internal subtitles for Android MediaPlayer

I need to show internal subtitles using android MediaPlayer. I am playing a .ts stream, subtitles come on a separate stream with DVB subcodec. Currently working on Android 4.2.2, DVB subtitle is not supported by native media player. Any alternative?

+3


source to share


1 answer


You can watch google open source video player https://github.com/google/ExoPlayer

They don't have DVB, but you can either add your own parser, or if you already have one, just plug it into your player.



Otherwise, if you want to do it with MediaPlayer, you need to keep track of the current playing time and display the subtitles on top in a separate view.

0


source







All Articles