chore: fix iOS build for custom metadata
This commit is contained in:
parent
6cbc7cdc89
commit
ae17aa747e
@ -5,7 +5,6 @@ import Photos
|
|||||||
/*!
|
/*!
|
||||||
* Collection of pure functions
|
* Collection of pure functions
|
||||||
*/
|
*/
|
||||||
@available(tvOS 10.0, *)
|
|
||||||
enum RCTVideoUtils {
|
enum RCTVideoUtils {
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
@ -390,13 +390,15 @@ class RCTVideo: UIView, RCTVideoPlayerViewControllerDelegate, RCTPlayerObserverH
|
|||||||
mapping[.commonIdentifierDescription] = description
|
mapping[.commonIdentifierDescription] = description
|
||||||
}
|
}
|
||||||
|
|
||||||
if !mapping.isEmpty {
|
if #available(iOS 12.2, *), !mapping.isEmpty {
|
||||||
playerItem.externalMetadata = createMetadataItems(for: mapping)
|
playerItem.externalMetadata = createMetadataItems(for: mapping)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if os(tvOS)
|
||||||
if let chapters = _chapters {
|
if let chapters = _chapters {
|
||||||
playerItem.navigationMarkerGroups = makeNavigationMarkerGroups(chapters)
|
playerItem.navigationMarkerGroups = makeNavigationMarkerGroups(chapters)
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return playerItem
|
return playerItem
|
||||||
}
|
}
|
||||||
@ -405,6 +407,7 @@ class RCTVideo: UIView, RCTVideoPlayerViewControllerDelegate, RCTPlayerObserverH
|
|||||||
return mapping.compactMap { createMetadataItem(for:$0, value:$1) }
|
return mapping.compactMap { createMetadataItem(for:$0, value:$1) }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if os(tvOS)
|
||||||
private func makeNavigationMarkerGroups(_ chapters: [Chapter]) -> [AVNavigationMarkersGroup] {
|
private func makeNavigationMarkerGroups(_ chapters: [Chapter]) -> [AVNavigationMarkersGroup] {
|
||||||
var metadataGroups = [AVTimedMetadataGroup]()
|
var metadataGroups = [AVTimedMetadataGroup]()
|
||||||
|
|
||||||
@ -438,13 +441,11 @@ class RCTVideo: UIView, RCTVideoPlayerViewControllerDelegate, RCTPlayerObserverH
|
|||||||
{
|
{
|
||||||
let imageItem = createMetadataItem(for: .commonIdentifierArtwork, value: pngData)
|
let imageItem = createMetadataItem(for: .commonIdentifierArtwork, value: pngData)
|
||||||
metadata.append(imageItem)
|
metadata.append(imageItem)
|
||||||
print("Image added")
|
|
||||||
} else {
|
|
||||||
print("Something went wrong")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return AVTimedMetadataGroup(items: metadata, timeRange: timeRange)
|
return AVTimedMetadataGroup(items: metadata, timeRange: timeRange)
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
private func createMetadataItem(for identifier: AVMetadataIdentifier,
|
private func createMetadataItem(for identifier: AVMetadataIdentifier,
|
||||||
value: Any) -> AVMetadataItem {
|
value: Any) -> AVMetadataItem {
|
||||||
|
Loading…
Reference in New Issue
Block a user