Question

I have a sample buffer that I'm using to capture video for an AVAssetWriter. I'm trying to figure out a way to determine how much video (time) I have captured. currently I am able to access the current buffer timestamp by using

CMTime pts = CMSampleBufferGetPresentationTimeStamp(sampleBuffer);

I'm looking for a way to determine the duration of the buffer, i've tried

CMTime dur = CMSampleBufferGetOutputDuration(sampleBuffer); but it seems to fluctuate 

between .002333 and nan for some reason

No correct solution

OTHER TIPS

Why not just keep a timestamp for the first sample, and do a very simple calculation (latest timestamp minus the first one)?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top