Open Sergozh opened 10 years ago
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;
}
@mikaelhellqvist When I try to convert 3 videos the last one is reversed video from all 3 files. How to fix this? Thanks.