Show video capturing duration with AVCam

138 views Asked by At

I'm using Apple's AVCam source code to create a custom camera, I want still image and video capture both from custom camera, so for video capturing I'll also need video capture duration, not sure how it'll work? Any idea? I'll manage to add a UILabel and a NSTimer for this but don't know how I'll get exact video duration from this?

1

There are 1 answers

0
Hemang On BEST ANSWER

I sorted it out with a NSTimer, when I start capturing I schedule a timer, and on stop capturing, I reset timer. In timer action, incrementing a duration ivar and showing it as capturing duration in a UILabel.