I have 2 QTTime's and I want to take my QTMovie and clip out the
section between time A and time B
This is the example I found:
// set the duration to 10 seconds
QTTimeRange range = QTMakeTimeRange(QTZeroTime, [movie duration]);
[movie scaleSegment:range newDuration:QTMakeTime(10, 1)];
But what I dont understand is when you scaleSegment the use of range
and such for my case. I want to take a clip from 10 seconds to 35
seconds.