Android Question Exoplayer dude. Video Resolution

Hackito

Member
Is it possible to downsample a video (FHD to SD or 360p) while watching? Video of type M3U8 or URI or even a mkv from a URL played from exoplayer or other video player
 

TILogistic

Expert
Licensed User
Longtime User
this may be of help:


search:
 
Last edited:
Upvote 0

Hackito

Member
this may be of help:


search:
Excellent, Thank you very much for your help. It helped me to know about the video quality, however it continues to lag regardless of the resolution. What could be the lag problem? And is there another player equal to or better than ExoPlayer?
 
Upvote 0

Hackito

Member
this may be of help:


search:
player.setTrackSelectionParameters(
player.getTrackSelectionParameters()
.buildUpon()
.setPreferredAudioLanguages(languages)
.setPreferredTextLanguage("ar")
.setMaxVideoSize(1920, 1080)
.setMinVideoSize(1920, 1080)
.setMinVideoBitrate(Integer.MAX_VALUE)
.setMaxVideoBitrate(Integer.MAX_VALUE)
.construir());

Hi. Please, code in b4a? (.setMaxVideoSize)
 
Upvote 0

TILogistic

Expert
Licensed User
Longtime User
See the script examples, create more subroutines.
 
Upvote 0
Top