iOS: allow A2UI actions from local canvas host

This commit is contained in:
Peter Steinberger
2025-12-18 23:31:49 +01:00
parent 9062f60e3d
commit 9ace6af3df
3 changed files with 85 additions and 15 deletions

View File

@@ -214,7 +214,7 @@ actor CameraController {
nonisolated static func clampDurationMs(_ ms: Int?) -> Int {
let v = ms ?? 3000
// Keep clips short by default; avoid huge base64 payloads on the bridge.
return min(15000, max(250, v))
return min(60_000, max(250, v))
}
private nonisolated static func exportToMP4(inputURL: URL, outputURL: URL) async throws {