ReverseClip
ReverseClip copied to clipboard
Wrong output when convert more than 1 videos
@mikaelhellqvist When I try to convert 3 videos the last one is reversed video from all 3 files. How to fix this? Thanks.
I was facing the same issue. I ended up emptying the composition before converting every video for my usecase. Like,
RCComposer.m
- (id)init
{
self = [super init];
if (self) {
_composition = [[AVMutableComposition alloc] init];
[self emptyComposition];
}
return self;
}