Is it possible to support subtitles using Android native player?

Does android native player support closed captions during video streaming? If so, is it automatically processed by the player or do I need to process it separately and how?

We have a requirement specifically for Android 3.0 and above to display subtitles (preferably) or subtitles when streaming live video.

+8
source share
1 answer

Android version 4.0.x and below

In the case of Android 4.0 and below, Media Player did not support subtitles by default. This can be done by the application itself, in more detail in this white document.

Android 4.1 (Jelly Bean - JB))

Android JB version has built-in support for internal (present in MP4 files) and external SRT subtitles. More information can be found at http://developer.android.com/about/versions/android-4.1.html#Multimedia

+7
source

All Articles