A media3 extend library for libass.
App use media3 can use this module to add ass for your player.
There are three ways to render ass subtitle.
Which is defined in AssRenderType
.
/**
* ASS render type
*/
enum class AssRenderType {
/**
* Use SubtitleView render.
*/
LEGACY,
/**
* Use Effect(Powered by canvas)
*/
CANVAS,
/**
* Use Effect(Powered by OpenGL)
*/
OPEN_GL
}
The ass/ssa subtitle will be parsed and transcode to bytes, and decode to bitmap when render.
This type not support dynamic feature, because all subtitle and it time is static.
But since the subtitle is transcode, it will not cost too much time when render. All work is done in parse thread.
The ass/ssa subtitle will be cal and render at runtime use media3 effect feature, and this will support all dynamic features.
And this need to create a screen size offscreen bitmap to render the libass bitmap pieces.
But when the dynamic feature is too complex, and libass will cost too much time to cal, the render will be blocked.
Just like CANVAS
, but use OpenGL to render. and the offscreen tex is create to render the bitmap pieces.
Due to test, the OPEN_GL
will save 1/3 time when render.
- Add MavenCenter to your project
allprojects { repositories { mavenCentral() } }
- Add dependency.
implementation "io.github.peerless2012:ass-media:x.x.x"
- Use libass-media in java/kotlin
player = ExoPlayer.Builder(this) .buildWithAssSupport( this, AssRenderType.OPEN_GL )
- Add external subtitles.
NOTE: Make sure the
val enConfig = MediaItem.SubtitleConfiguration .Builder(Uri.parse("http://192.168.0.254:80/files/f-en.ass")) .setMimeType(MimeTypes.TEXT_SSA) .setLanguage("en") .setLabel("External ass en") .setId("129") .setSelectionFlags(C.SELECTION_FLAG_DEFAULT) .build() val jpConfig = MediaItem.SubtitleConfiguration .Builder(Uri.parse("http://192.168.0.254:80/files/f-jp.ass")) .setMimeType(MimeTypes.TEXT_SSA) .setLanguage("jp") .setLabel("External ass jp") .setId("130") .build() val zhConfig = MediaItem.SubtitleConfiguration .Builder(Uri.parse("http://192.168.0.254:80/files/f-zh.ass")) .setMimeType(MimeTypes.TEXT_SSA) .setLanguage("zh") .setLabel("External ass zh") .setId("131") .build() val mediaItem = MediaItem.Builder() .setUri(url) .setSubtitleConfigurations(ImmutableList.of(enConfig, jpConfig, zhConfig))
id
is set and different from media self track size. Recommend bigger than 128 or more bigger.
This only happens in LEGACY
mode, see: