Hello I am trying to assign some metadata to my AVExportSession so that the output files have the same metadata attached as the AVExportSession.
I have tried import AVFoundation import AVKit and a combo of the two.
The AVMutableMetaDataItem.value is unable to be set because the compiler will reference NSObject.value property or its NSObject.setValue(forKey:) method
I have tried creating a playground and just creating the Mutable Metadata item without the same errors
When trying to subclass AVMutableMetaDataItem and trying to override its open var value property, the compiler will then complain the value we are overriding is read-only in reference to its non-mutable counterpart AVMetaDataItem.value
Does a radar need to be filled or is there something I am not doing correctly with creating an AVMutableMetaDataItem?