Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to cancel/stop GPUImageMovieWriter and GPUImageMovie after running startRecording and startProcessing?

share|improve this question

2 Answers

Assuming that self.movieWriter is GPUImageMovieWriter, you need to set a callback before invoking startRecording and startProcessing:

[self.movieWriter setCompletionBlock:^{
    [self finishFilter];
}];

And then you can stop the image processing with:

[self.movieWriter endProcessing];

And the callback is:

- (void)finishFilter {
    //remove all targets from your filter chain calling "removeAllTargets"
    //then:
    [self.movieWriter finishRecording];
    self.movieWriter.completionBlock = nil;
    self.movieWriter = nil;
}
share|improve this answer
What if I don't want to "finish" it? When I say "cancel" I really mean cancel; I don't want to save a partial movie. – erurainon Sep 28 '12 at 2:24

Why. There is a cancel recording option.

[self.movieWriter cancelRecording];

The videos are not saved if it is interrupted in any way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.