to cut song with millisecond precision

462 Views Asked by At

I can cut a song in range start time to duration, bot are float. But i get only seconds in final song.

CMTime sTime=CMTimeMake(startTime*1000, 1000);
CMTime eTime=CMTimeMake(duration*1000, 1000);

CMTimeRange editRange = CMTimeRangeMake(sTime,eTime);
[myMutableCompostion insertTimeRange:editRange ofAsset:sourceAsset atTime:myMutableCompostion.duration error:&editError];

Eg: startime=50.0 duration=23.9 song should be 23.9 seconds, but I get only 23 seconds.

Please help me to cut song with millisecond precision.

0

There are 0 best solutions below