jellyflood/Shared/Objects/PlaybackCompatibility/PlaybackCompatibility+Video.swift
Joe Kribs 0025422634
[iOS & tvOS] Upgrade SDK to 10.10 (#1463)
* Buildable!

* Update file names.

* Default sort to sort name NOT name.

* SessionInfoDto vs SessionInfo

* Targetting

* Fix many invalid `ItemSortBy` existing. Will need to revisit later to see which can still be used!

* ExtraTypes Patch.

* Move from Binding to OnChange. Tested and Working.

* Update README.md

Update README to use 10.10.6. Bumped up from 10.8.13

* Update to Main on https://github.com/jellyfin/jellyfin-sdk-swift.git

* Now using https://github.com/jellyfin/jellyfin-sdk-swift.git again!

* Paths.getUserViews() userId moved to parameters

* Fix ViewModels where -Dto suffixes were removed by https://github.com/jellyfin/Swiftfin/pull/1465 auto-merge.

* SupportedCaseIterable

* tvOS supportedCases fixes for build issue.

* cleanup

* update API to 0.5.1 and correct VideoRangeTypes.

* Remove deviceProfile.responseProfiles = videoPlayer.responseProfiles

* Second to last adjustment:
Resolved: // TODO: 10.10 - Filter to only valid SortBy's for each BaseItemKind.
Last outstanding item: // TODO: 10.10 - What should authenticationProviderID & passwordResetProviderID be?

* Trailers itemID must precede userID

* Force User Policy to exist.

---------

Co-authored-by: Ethan Pippin <ethanpippin2343@gmail.com>
2025-04-06 23:42:47 -04:00

55 lines
1.5 KiB
Swift

//
// Swiftfin is subject to the terms of the Mozilla Public
// License, v2.0. If a copy of the MPL was not distributed with this
// file, you can obtain one at https://mozilla.org/MPL/2.0/.
//
// Copyright (c) 2025 Jellyfin & Jellyfin Contributors
//
import Foundation
import JellyfinAPI
extension PlaybackCompatibility {
enum Video {
// MARK: - Compatibility Profiles
@ArrayBuilder<DirectPlayProfile>
static var compatibilityDirectPlayProfile: [DirectPlayProfile] {
DirectPlayProfile(type: .video) {
AudioCodec.aac
} videoCodecs: {
VideoCodec.h264
} containers: {
MediaContainer.mp4
}
}
@ArrayBuilder<TranscodingProfile>
static var compatibilityTranscodingProfile: [TranscodingProfile] {
TranscodingProfile(
isBreakOnNonKeyFrames: true,
context: .streaming,
maxAudioChannels: "8",
minSegments: 2,
protocol: MediaStreamProtocol.hls,
type: .video
) {
AudioCodec.aac
} videoCodecs: {
VideoCodec.h264
} containers: {
MediaContainer.mp4
}
}
// MARK: - Direct Profile
@ArrayBuilder<DirectPlayProfile>
static var forcedDirectPlayProfile: [DirectPlayProfile] {
DirectPlayProfile(type: .video)
}
}
}