Hello,
I was looking through the AV Foundation documents for writing timecode to quicktime, and came across technical note TN2310 (https://developer.apple.com/library/mac/technotes/tn2310/_index.html). I noticed some of the API being used is newly added in 10.9. For example, there is a line of code that adds the timecode track association with the video track:
and addTrackAssociationWithTrackOfInput is only available in AVAssetWriterInput.h in 10.9. I also came across the sample command line code for timecode reader/writer (https://developer.apple.com/library...on/Intro.html#//apple_ref/doc/uid/DTS40013350) that specifies build and runtime requirements of 10.9.
Is there a way to add timecode with AV Foundation in 10.8 and are there any examples of how to do so?
Thank you
I was looking through the AV Foundation documents for writing timecode to quicktime, and came across technical note TN2310 (https://developer.apple.com/library/mac/technotes/tn2310/_index.html). I noticed some of the API being used is newly added in 10.9. For example, there is a line of code that adds the timecode track association with the video track:
Code:
// add track association with video track
[videoInput addTrackAssociationWithTrackOfInput:timecodeInput
type:AVTrackAssociationTypeTimecode];
and addTrackAssociationWithTrackOfInput is only available in AVAssetWriterInput.h in 10.9. I also came across the sample command line code for timecode reader/writer (https://developer.apple.com/library...on/Intro.html#//apple_ref/doc/uid/DTS40013350) that specifies build and runtime requirements of 10.9.
Is there a way to add timecode with AV Foundation in 10.8 and are there any examples of how to do so?
Thank you
Last edited: