I'm using CMTime for AVAssets for video clip. To trim the video without saving the new video file I just want to keep track of the start time and the duration.
The CMTimeGetSeconds() method will return a Float64, what would be the best way to store this in CoreData?
I can't use a NSNumber as the float type round the Float64 way to much. 1.200000 is 1.0000 when I create my NSNumber.
Thanks in advance