i am trying to play a hls uri with exoplayer in java
whem i give a uri with https protocol it plays well but in case of http protocol the content is not ben played
but when i play the same links with other players like mxplayer or vlc media player it is played well
can anypne help
`ExoPlayer player = new ExoPlayer.Builder(this).build();
binding.playerView.setPlayer(player);
MediaItem mediaItem = MediaItem.fromUri("http://cdnapi.kaltura.com/p/1878761/sp/187876100/playManifest/entryId/1_usagz19w/flavorIds/1_5spqkazq,1_nslowvhp,1_boih5aji,1_qahc37ag/format/applehttp/protocol/http/a.m3u8");
player.addMediaItem(mediaItem);
player.prepare();
player.setPlayWhenReady(true);`