Creating a mov file with depthData mediaType

Is it possible to create a movie file with the capturedDepthData received from ARFrame?

I get error for the following code:
Code Block
assetWriter = try AVAssetWriter(outputURL: output, fileType: AVFileType.mov)
       
videoDepthInput = AVAssetWriterInput(mediaType: .depthData, outputSettings: nil) // no setting to allow passthrou
assetWriter.add(videoDepthInput)


Error: [AVAssetWriter addInput:] media type dpth is not allowed for this asset writer
Please file an enhancement request and provide a description of your use case.
Creating a mov file with depthData mediaType
 
 
Q