mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
Get available resolutions dynamically from player
This commit is contained in:
parent
b532aa402c
commit
e2d7e4a435
@ -1202,63 +1202,34 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
||||
exoPlayer.setMediaItem(mediaItem)
|
||||
}
|
||||
|
||||
private fun String?.qualityToInt(): Int {
|
||||
this ?: return 0
|
||||
return this.toString().split("p").first().toInt()
|
||||
}
|
||||
|
||||
private fun getAvailableResolutions(): List<VideoResolution> {
|
||||
if (!this::streams.isInitialized) return listOf()
|
||||
|
||||
val resolutions = mutableListOf<VideoResolution>()
|
||||
|
||||
val videoStreams = try {
|
||||
// attempt to sort the qualities, catch if there was an error ih parsing
|
||||
streams.videoStreams?.sortedBy {
|
||||
it.quality?.toLong() ?: 0L
|
||||
}?.reversed()
|
||||
.orEmpty()
|
||||
} catch (_: Exception) {
|
||||
streams.videoStreams.orEmpty()
|
||||
}
|
||||
|
||||
for (vid in videoStreams) {
|
||||
if (resolutions.any {
|
||||
it.resolution == vid.quality.qualityToInt()
|
||||
} || vid.url == null
|
||||
) {
|
||||
continue
|
||||
}
|
||||
|
||||
runCatching {
|
||||
resolutions.add(
|
||||
VideoResolution(
|
||||
name = "${vid.quality.qualityToInt()}p",
|
||||
resolution = vid.quality.qualityToInt()
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
/*
|
||||
// append quality to list if it has the preferred format (e.g. MPEG)
|
||||
val preferredMimeType = "video/${PlayerHelper.videoFormatPreference}"
|
||||
if (vid.url != null && vid.mimeType == preferredMimeType)
|
||||
/**
|
||||
* Get all available player resolutions
|
||||
*/
|
||||
private fun getAvailableResolutions(): List<VideoResolution> {
|
||||
val resolutions = exoPlayer.currentTracks.groups.map { group ->
|
||||
(0..group.length - 1).map {
|
||||
group.getTrackFormat(it).width
|
||||
}
|
||||
}.flatten()
|
||||
.filter { it > 0 }
|
||||
.sortedDescending()
|
||||
.toSet()
|
||||
.toList()
|
||||
|
||||
if (resolutions.isEmpty()) {
|
||||
return listOf(
|
||||
return resolutions.map {
|
||||
VideoResolution(
|
||||
getString(R.string.hls),
|
||||
resolution = Int.MAX_VALUE,
|
||||
adaptiveSourceUrl = streams.hls
|
||||
name = "${it}p",
|
||||
resolution = it
|
||||
)
|
||||
}.toMutableList().also {
|
||||
it.add(
|
||||
0,
|
||||
VideoResolution(
|
||||
getString(R.string.auto_quality),
|
||||
resolution = Int.MAX_VALUE
|
||||
)
|
||||
)
|
||||
} else {
|
||||
resolutions.add(0, VideoResolution(getString(R.string.auto_quality), Int.MAX_VALUE))
|
||||
}
|
||||
|
||||
return resolutions
|
||||
}
|
||||
|
||||
private fun setResolutionAndSubtitles() {
|
||||
|
Loading…
Reference in New Issue
Block a user