mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
Limit formats available to AVPlayer
This commit is contained in:
parent
9edcf66557
commit
9fc4638298
@ -62,13 +62,11 @@ final class AVPlayerBackend: PlayerBackend {
|
||||
|
||||
func bestPlayable(_ streams: [Stream], maxResolution _: ResolutionSetting) -> Stream? {
|
||||
streams.first { $0.kind == .hls } ??
|
||||
streams.filter { $0.kind == .adaptive }.max { $0.resolution < $1.resolution } ??
|
||||
streams.first
|
||||
streams.max { $0.resolution < $1.resolution }
|
||||
}
|
||||
|
||||
func canPlay(_ stream: Stream) -> Bool {
|
||||
stream.kind == .hls || stream.kind == .stream || stream.videoFormat == "MPEG_4" ||
|
||||
(stream.videoFormat.starts(with: "video/mp4") && stream.encoding == "h264")
|
||||
stream.kind == .hls || (stream.kind == .stream && stream.resolution.height <= 720)
|
||||
}
|
||||
|
||||
func playStream(
|
||||
|
Loading…
Reference in New Issue
Block a user