I am developing an app which edit videos. There is no problem when I record video because, initially I will set all the settings like saturation, brightness, contrast etc.
But the problem is with recorded videos. I am unable to change all the above properties of videos which are recorded already.
Anyone please tell me the solution for he problem.
Any good solutions, suggestions will be appreciated.
Movies can be loaded into the framework via the GPUImageMovie class, filtered, and then written out using a GPUImageMovieWriter. GPUImageMovieWriter is also fast enough to record video in realtime from an iPhone 4's camera at 640x480, so a direct filtered video source can be fed into it.
The following is an example of how you would load a sample movie, pass it through a pixellation and rotation filter, then record the result to disk as a 480 x 640 h.264 movie:
Once recording is finished, you need to remove the movie recorder from the filter chain and close off the recording using code like the following:
A movie won't be usable until it has been finished off, so if this is interrupted before this point, the recording will be lost.
Here is good tutorial:
http://www.sunsetlakesoftware.com/2012/02/12/introducing-gpuimage-framework
See "Filtering and re-encoding a movie" section.