Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud randomly fails to resolve package dependencies
Not much help here, but I've been seeing this intermittently over the last few months also. I only have a handful of public (no private) package dependencies. EDIT: In fact, I just hit it on the next build after posting this! xcodebuild: error: Could not resolve package dependencies: failed downloading 'https://github.com/realm/SwiftLint/releases/download/0.57.0/SwiftLintBinary-macos.artifactbundle.zip' which is required by binary target 'SwiftLintBinary': downloadError("The request timed out.") fatalError
1w
Reply to AVUnknown error using Camera Extensions in AVCaptureSession
@DTS Engineer Thanks Greg, feedback filed in FB15294117. Out of interest, were there any Camera Extensions you know of that worked that provide virtual cameras? I ended up rewriting against native MacOS to see it work as a temporary workaround, but if there is a known virtual camera extension that works it would be great to be able to provide an alternative solution to my users. No worries if not. Thanks for the quick response!
Sep ’24
Reply to AVUnknown error using Camera Extensions in AVCaptureSession
The repro in the AVCamBarcode (https://developer.apple.com/documentation/avfoundation/capture_setup/avcambarcode_detecting_barcodes_and_faces) sample app is to: Enable and switch to Mac Catalyst as a destination Add the following lines to CameraViewController.swift:220 Use a camera extension. With the commented out line you will see the preview correctly and as expected. Uncomment the line to add an output and everything will break. let output = AVCaptureVideoDataOutput() guard session.canAddOutput(output) else { fatalError() } // session.addOutput(output) // Uncomment this line for everything to break.
Sep ’24
Reply to AVAudioMixerNode not mixing <1 node with voice processing formats
Bothering to write the repro for this post got me thinking, if I don't use the format everywhere and instead use the output format for the mixer->output connection, and then add another mixer on the input side so I can do input->input mixer in the output format, and input mixer->sink in my desired format, I can mix N nodes and hear them! However, I get from AU (0x92e7e0b2): auou/vpio/appl, render err: -10,874 (kAudioUnitErr_TooManyFramesToProcess) on the input side now.
Sep ’23