Device Id has always been different for devices with different hardware
specs, unfortunately this is not the case for the last release Apple TV 4K (3rd generation).
Is there a way to identify this new Apple TV on its two different versions (with or without Ethernet)?
The issue is that they both have the same Device Id (AppleTv14.1). The difference between them is in Model Id (A2737 vs A2843). Any idea about how to get this Model Identifier?
More info:
https://en.wikipedia.org/wiki/Apple_TV#Technical_specifications
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
In order to provide to our users more information about the different audio tracks available in our streams, I am trying to identify Dolby audio tracks from the AVAssetMediaSelectionGroup that I get from the asset.
To do that, I am trying to get the audio codec from each AVMediaSelectionKeyValueOption. That way, from the codec, I could identify this track as Dolby, Stereo, etc...
Sadly, I did not find this information available in AVMediaSelectionKeyValueOption. Is there some way that I could use to get this data?
For the log, this is I am currently able to get from each media selection:
(lldb) po playerItem.asset.mediaSelectionGroup(forMediaCharacteristic: .audible)
▿ Optional<AVMediaSelectionGroup>
- some : <AVAssetMediaSelectionGroup: 0x28306fa00, options = (
"<AVMediaSelectionKeyValueOption: 0x28306d480, language = en, mediaType = 'soun', title = English, default = YES>",
"<AVMediaSelectionKeyValueOption: 0x28306d380, language = nar, mediaType = 'soun', title = Other (nar)>"
), allowsEmptySelection = YES>
I am trying to implement the new iPod wheel style scrubbing gesture that was recently added to AVPlayerController on my custom Player UI built on top of AVPlayer .
I can not find any new API reporting this kind of gestures from the remote control, is there some API that I am missing that is actually reporting these gestures?
Otherwise, how would you recommend to implement something like that? Should I use the GameController SDK in order to get the actual position of the user's finger?