Post

Replies

Boosts

Views

Activity

Reply to FCPXML Creation issue...
Any reason you're using video0, etc? Can you try use r1, r2, etc. as Final Cut Pro would do? The error you're seeing is because your asset is missing a format: <asset id="video0" name="11a(1-5).mp4" start="0s" hasVideo="1" videoSources="1" duration="6.81s"> You're using incorrectly using decimal places for the time values - i.e. 9.94s. These should be rational numbers.
2w
Reply to MPSImageScale throws BAD ACCESS
Based on the description in this header file, it certainly sounds like you can either use MPSImageLanczosScale or MPSImageBilinearScale, and MPSImageScale is not really an option: https://github.com/xybp888/iOS-SDKs/blob/fa4a2d866231985fa9538fafc800421aa99b83f2/iPhoneOS13.0.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Headers/MetalPerformanceShaders.h#L647
Feb ’23
Reply to Notary server down - 500 internal server error
I saw a few posts above suggesting using altool, and after a little bit of trial and error, this seemed to work for me: xcrun altool -t osx -f "/path/to/app.dmg" --primary-bundle-id --output-format xml --notarize-app -u apple-id-goes-here -p "app-specific-password" ...then take the RequestUUID and you can check the status using: xcrun altool --notarization-info RequestUUID-goes-here -u apple-id-goes-here -p "app-specific-password" ...this once that's done you can staple: xcrun stapler staple "/path/to/app.dmg" Hope this helps others who are running into the same issue!
May ’22