SubtitleForAndroid
SubtitleForAndroid copied to clipboard
How use with ExoPlayer?
If you use ExoPlayer, then you don't need the library. You can use MergingMediaSource provided by ExoPlayer library to merge “videoMediaSource” and “subtitleSource”:
MediaSource videoMediaSource = ...
MediaSource subtitleMediaSource = ...
MergingMediaSource finalMediaSource = new MergingMediaSource(videoMediaSource, subtitleMediaSource)