Show kbps in quality

Co-authored-by: Matthew Esposito <matt@matthew.science>
This commit is contained in:
Carbrex 2024-02-06 13:11:15 +05:30 committed by GitHub
parent 0888fce5a2
commit db6238394a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,8 @@
availableLevels.forEach(function (level, index) {
var option = document.createElement('option');
option.value = index.toString();
option.text = level.height + 'p';
var bitrate = (level.bitrate / 1_000).toFixed(0);
option.text = level.height + 'p (' + bitrate + ' kbps)';
qualitySelector.appendChild(option);
});