How to get the timestamp of each video frame in iOS while decoding a video.mp4
问题 Scenario: I am writing an iOS app to try decode a videoFile.mp4 . I am using AVAssetReaderTrackOutput with AVAssetReader to decode frames from the video file. This works very well. I get each & every frame from videoFile.mp4 basically using the following logic at the core. Code: AVAssetReader * videoFileReader; AVAssetReaderTrackOutput * assetReaderOutput = [videoFileReader.outputs objectAtIndex:0]; CMSampleBufferRef sampleBuffer = [assetReaderOutput copyNextSampleBuffer]; sampleBuffer is the