How to get TVJS media player bitrate

I created tvjs media player by using below API calls


var player = new Player();

player.playlist = new Playlist();

var mediaitem = new MediaItem('video',streamurl );

player.playlist.push(mediaitem);

player.present();

How to get bitrate information from player object?

Please file an enhancement request at https://bugreport.apple.com

I have this question too. Is Apple provides any way to find the bitrate from the tvjs media player?
I have gone through the Apple documentation(https://developer.apple.com/documentation/tvmljs/player) and not able to identify the attribute related to the bitrate of TVJS player.
How to get TVJS media player bitrate
 
 
Q