Add custom metadata to video using AVFoundation

前端 未结 4 631
一生所求
一生所求 2021-01-06 08:45

I want to add some info (metadata) to a video. I have found a way to retrieve metadata, but did not find any solution to set or modify metadata. I am using AVURLAsset<

4条回答
  •  天命终不由人
    2021-01-06 08:58

    Use -[AVAssetWriter setMetadata:].

    This is set to an NSArray of AVMutableMetadataItems. Note that you cannot set the value after writing has started.

    Metadata keys and keyspaces are listed in AVMetadataFormat.h.

提交回复
热议问题