I have a GPUImageColorDodgeBlend filter with two inputs connected:
- A
GPUImageVideoCamerawhich is getting frames from the iPhone video camera. - A
GPUImageMoviewhich is an (MP4) video file that I want to have laid over the live camera feed.
The GPUImageColorDodgeBlend is then connected to two outputs:
- A
GPUImageImageViewto provide a live preview of the blend in action. - A
GPUImageMovieWriterto write the movie to storage once a record button is pressed.
Now, before the video starts recording, everything works OK 100% of the time. The GPUImageVideo is blended over the live camera video fine, and no issues or warnings are reported.
However, when the GPUImageMovieWriter starts recording, things start to go wrong randomly. About 80-90% of the time, the GPUImageMovieWriter works perfectly, there are no errors or warnings and the output video is written correctly.
However, about 10-20% of the time (and from what I can see, this is fairly random), things seem to go wrong during the recording process (although the on-screen preview continues to work fine).
Specifically, I start getting hundreds & hundreds of Program appending pixel buffer at time: errors.
This error originates from the - (void)newFrameReadyAtTime:(CMTime)frameTime atIndex:(NSInteger)textureIndex method in GPUImageWriter.
This issue is triggered by problems with the frameTime values that are reported to this method.
From what I can see, the problem is caused by the writer sometimes receiving frames numbered by the video camera (which tend to have extremely high time values like 64616612394291 with a timescale of 1000000000). But, then sometimes the writer gets frames numbered by the GPUImageMovie which are numbered much lower (like 200200 with a timescale of 30000).
It seems that GPUImageWriter is happy as long as the frame values are increasing, but once the frame value decreases, it stops writing and just emits Program appending pixel buffer at time: errors.
I seem to be doing something fairly common, and this hasn't been reported anywhere as a bug, so my questions are (answers to any or all of these are appreciated -- they don't all need to necessarily be answered sequentially as separate questions):
Where do the
frameTimevalues come from -- why does it seem so arbitrary whether theframeTimeis numbered according to theGPUImageVideoCamerasource or theGPUImageMoviesource? Why does it alternative between each -- shouldn't the frame numbering scheme be uniform across all frames?Am I correct in thinking that this issue is caused by non-increasing
frameTimes?...if so, why does
GPUImageViewaccept and display theframeTimes just fine on the screen 100% of the time, yetGPUImageMovieWriterrequires them to be ordered?...and if so, how can I ensure that the
frameTimes that come in are valid? I tried addingif (frameTime.value < previousFrameTime.value) return;to skip any lesser-numbered frames which works -- most of the time. Unfortunately, when I setplaysAtActualSpeedon theGPUImageMoviethis tends to become far less effective as all the frames end up getting skipped after a certain point.
...or perhaps this is a bug, in which case I'll need to report it on GitHub -- but I'd be interested to know if there's something I've overlooked here in how the frameTimes work.