fix(iOS): disable allowsVideoFrameAnalysis (#4643)

This commit is contained in:
Alexander Tsirel
2025-11-12 00:06:33 +11:00
committed by GitHub
parent b0ec47d58c
commit 8ee914f1da
@@ -166,6 +166,10 @@ import UIKit
controller.selectSpeed(initialSpeed)
}
}
// Disable video frame analysis to prevent visual lookup
if #available(iOS 16.0, iPadOS 16.0, macCatalyst 18.0, *) {
controller.allowsVideoFrameAnalysis = false
}
// Find nearest UIViewController
if let parentVC = self.findViewController() {