ReverseClip icon indicating copy to clipboard operation
ReverseClip copied to clipboard

Wrong output when convert more than 1 videos

Open Sergozh opened this issue 11 years ago • 1 comments

@mikaelhellqvist When I try to convert 3 videos the last one is reversed video from all 3 files. How to fix this? Thanks.

Sergozh avatar Jan 24 '14 14:01 Sergozh

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;
}

vijaytholpadi avatar Apr 02 '15 02:04 vijaytholpadi