hey i m trying the record the gameplay of my game so that i can upload its video to youtube from device itself...m trying to do same thing as Talking tomcat app for iphone..recording the video then playing it ,etc...

i m using glReadPixels() for reading framebuffer data and then writing it to video with the help of AVAssetWriter in AVFoundation framwork. But reading the data on each drawing decreases the FPS from around 30-35 to 2-3 only while using glReadPixels.

i think Talking tomcat is also made with the help of Opengl ES it also has the video recording facility but it doesnot slows down while reading each frame any idea.... ?

link|improve this question

64% accept rate
hey I have some problem with my code for the same thing. In my video I can't add sound to the video. How did you add sound to the video file – Johnykutty May 7 at 4:53
many posts have covered this topic ... see over these stackoverflow.com/questions/tagged/avassetwriter – Tornado May 15 at 18:44
feedback

1 Answer

up vote 5 down vote accepted

In case someone want to implement the same..i figured out myself. First of all to my surprise i found that talking tomcat is not a 3D game app...it uses frame animations for all movements. and if some one wants to capture the that kind of view then they can use following code---

UIGraphicsBeginImageContext(self.view.bounds.size); //self.view.window.frame.size
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil);

and then use AVAssetWriter for creating the video from that frames. ofcourse you can find code for that in some other post.. For me its not useful as i have to capture 3D part.. Cheers

link|improve this answer
hi.. I was searching for this issue and find this post... Thanks to show me a way.. Upvote for u :) – Dimple Panchal Dec 3 '11 at 4:20
K ..cool m glad it helped you ... – Tornado Dec 3 '11 at 7:19
Please check my post stackoverflow.com/q/8367717/642375 and reply to it if you know that. Will meet u on chat on monday morning time... – Dimple Panchal Dec 3 '11 at 12:48
feedback

Your Answer

 
or
required, but never shown

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