B4A Library addoMedia3 - AndroidX Media3 Exoplayer Wrapper

This library is wrapper for the new AndroidX Media3 Library which is based on Exoplayer You can still use my previous wrapper.
Since from now on the new updates and releases will be Published to AndroidX Media3 Library. so i migrate the whole wrapper to the new codebase.

Version 1.3.1 required aar.
Additional AAR 1.3.1

Functionality :
  • CreateUriSource
  • CreateSmoothStreamingSource
  • CreateHLSSource
  • CreateDashSource
  • CreateFileSource
  • CreateRtspStreamingSource
  • CreateRtmpStreamingSource
  • CreateUdpStreamingSource
  • clearMediaItems
  • CreateListSource
  • setReapeatMode
  • getIsPlaying
  • Prepare
  • Play
  • Pause
  • Release
  • getPosition
  • setPosition
  • getDuration
  • getVolume
  • setVolume
  • getCurrentMediaItemIndex
  • GetvideoFormatwidth
  • GetvideoFormatHeight
  • GetAudioTracksLanguages
  • GetVideoTrackSubtitles
  • preferedAudioLanguage
  • preferedtextLanguage
  • EnableSubtitles
  • PlaybackSpeed

DesignerProperties
  • Media3PlayerView
  • ResizeMode [FIT|FIXED_HEIGHT|FIXED_WIDTH]
  • UseController default is true
  • ShowBuffering [NEVER|PLAYING|ALWAYS] default is NEVER
  • ControllerTimeout default is 5000
Events :
  • Player_Ready
  • Player_Error
  • Player_Complete
  • Player_MetaData(metadataFields As Map)
  • IDLE
  • Buffering
Library and Example attached. Don't forget to download the required media3 aars, have a good day.

Updated to version 1.3

Added

  • TrackMetadata
  • PlaybackSpeed
B4X:
Sub Player_Ready
    addoPlayer.TrackMetadata
    Log("Ready")
End Sub

'example of calling th event

Sub Player_MetaData(metadataFields As Map)
    Log(metadataFields)
    Label1.Text = ""
    If metadataFields.ContainsKey("Title") Then
        Label1.Text = metadataFields.Get("Title")
    End If
    ' Handle the metadata fields here
    If metadataFields.ContainsKey("ArtworkData") Then
        Dim artworkData() As Byte = metadataFields.Get("ArtworkData")
        ' Create an InputStream from the byte array
        Dim inp As InputStream
        inp.InitializeFromBytesArray(artworkData, 0, artworkData.Length)
        ' Create a Bitmap from the InputStream
        Dim bitmap As Bitmap
        bitmap.Initialize2(inp)
        ImageView1.Bitmap = bitmap
        ImageView1.Visible = True
    End If
End Sub

Updated Media3 to the latest 1.3.1

Updated to version 1.4

  • Fixes an incompatibility between ExoPlayer and Firebase. Make sure to update the additional libs package.
updated to version 1.6
  • Updated the dependencies to be compatible with b4a 13+
  • removed PlayList replaced with CreateListSource
updated to version 1.7
  • Added a new view addoMedia3TexureView based on TextureView.
  • Added GetVideoTextLanguages2
  • Added GetAudioTracksLanguages2
  • Added SetTextLanguage2
  • SetAudioLanguage2
  • Added Event_GetVideoTextLanguages2(Subtitles As Map)
  • Added Event_Getaudiolanguages2(audiotracks As Map)
As mentioned in this thread there was issue on setting and retrieving the correct supported languages for audio and subtitles use GetVideoTextLanguages2 and GetAudioTracksLanguages2 to retrieve the correct language information.

The TextureView is a new view added to gives the ability to rotate the player as mentioned here. the down side of using textureview that the subtitle in videos will not be visible.

updated to version 1.8

in this update addoMedia3 and addoMedia3TexureView has a new method and event.

  • Added a new method takeScreenshot.
  • Added a new event OnScreenShot(screensrc() As Byte)

Example Updated to describe the usage of both views.

Important Note Additional aar files must be place in a folder with name addoexo.


I may add more features to this library..
 

Attachments

  • addoMedia3-V-1.8.zip
    34.5 KB · Views: 57
Last edited:

Addo

Well-Known Member
Licensed User
Version 1.3
  • Updated Media3 to latest version 1.2.0
  • Removed CreateListSource Method since ConcatenatingMediaSource is deprecated in version 1.2.0.
  • Added a new method PlayList to adapt the new mechanism to play a list of mediasources in the new version.
  • Added a new method clearMediaItems.
Example Updated as well.
its required to redownload the AAR files from the link in the first post.
 
Last edited:

Addo

Well-Known Member
Licensed User
Updated Media3 to the latest 1.3.1

Updated to version 1.4

  • Fixes an incompatibility between ExoPlayer and Firebase. Make sure to update the additional libs package.
Important Note Additional aar files must be place in a folder with name addoexo.
 

nedium

Active Member
Licensed User
Longtime User
hi @Addo , thanks your great work

I wanted to know if it could be verified

-GetAudioTracksLanguages
-GetVideoTrackSubtitles

since in some playbacks it does not detect some tracks and in vlc it does sample them and they work.

thank you
 

Scantech

Well-Known Member
Licensed User
Longtime User
Thanks for the library. It has more features than the other media3 library. Any chance supporting This
 

Addo

Well-Known Member
Licensed User
updated to version 1.7
  • Added a new view addoMedia3TexureView based on TextureView.
  • Added GetVideoTextLanguages2
  • Added GetAudioTracksLanguages2
  • Added SetTextLanguage2
  • SetAudioLanguage2
  • Added Event_GetVideoTextLanguages2(Subtitles As Map)
  • Added Event_Getaudiolanguages2(audiotracks As Map)
As mentioned in this thread there was issue on setting and retrieving the correct supported languages for audio and subtitles use GetVideoTextLanguages2 and GetAudioTracksLanguages2 to retrieve the correct language information.

The TextureView is a new view added to gives the ability to rotate the player as mentioned here. the down side of using textureview that the subtitle in videos will not be visible.

Example Updated to describe the usage of both views.
 
Last edited:

byz

Active Member
Licensed User
How to achieve efficient timing screenshots please. The time interval is in milliseconds, because the image needs to be processed and sent to the server.
This is useful for applications where real-time video monitoring is required.
 
Last edited:

nedium

Active Member
Licensed User
Longtime User
Hello @Addo , the 2 new ways to obtain the audio and subtitles

Added Event_GetVideoTextLanguages2(Subtitles As Map)
Added Event_Getaudiolanguages2(audiotracks As Map)

they work well.

But could it be added or I don't know if there is an option that if I select a subtitle and I no longer want to use it, how could I remove or disable it?

thanks for your work
 
Top