- Notifications
You must be signed in to change notification settings - Fork548
ShazamKit macOS xcode16.3 b1
Rolf Bjarne Kvinge edited this pageMar 20, 2025 ·2 revisions
#ShazamKit.frameworkhttps://github.com/dotnet/macios/pull/22444
diff -ruN /Applications/Xcode_16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Headers/SHMatchedMediaItem.h /Applications/Xcode_16.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Headers/SHMatchedMediaItem.h--- /Applications/Xcode_16.2.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Headers/SHMatchedMediaItem.h2024-11-10 09:35:57+++ /Applications/Xcode_16.3.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Headers/SHMatchedMediaItem.h2025-02-07 23:24:51@@ -17,6 +17,10 @@ API_AVAILABLE(macos(12.0), ios(15.0), tvos(15.0), watchos(8.0)) SH_EXPORT SHMediaItemProperty const SHMediaItemFrequencySkew;+/// The value ranges from 0.0 to 1.0, where 1.0 indicates the highest level of confidence.+API_AVAILABLE(macos(15.4), ios(18.4), tvos(18.4), watchos(11.4), visionos(2.4))+SH_EXPORT SHMediaItemProperty const SHMediaItemConfidence;+ /// @brief @c SHMatchedMediaItem represents metadata that has been matched against a @c SHCatalog /// @discussion Extra information is presented that can only be generated from a match. The properties provided here /// that are not available on @c SHMediaItem are ephemeral and can differ each time there is a match of the @c SHSignature that this@@ -37,6 +41,11 @@ /// @brief The auto updating playback position in the reference signature @property (NS_NONATOMIC_IOSONLY, assign, readonly) NSTimeInterval predictedCurrentMatchOffset;++/// The level of confidence in the match result.+/// @note This may be fetched using the key @c SHMediaItemConfidence+/// @discussion The value ranges from 0.0 to 1.0, where 1.0 indicates the highest level of confidence.+@property (NS_NONATOMIC_IOSONLY, assign, readonly) float confidence API_AVAILABLE(macos(15.4), ios(18.4), tvos(18.4), watchos(11.4), visionos(2.4)); @end