Chintan Patel
Chintan Patel

Reputation: 3165

How to record video of screen like Talking Tom Cat on iPhone?

I want to know if there is any public API in AVFoundation or any other framework which can be used to record screen like Talking Tom Cat does. I looked into AVFoundation and CoreVideo frameworks but could not find anything from the header files.

If anyone knows how to record screen video prgramatically using iPhone SDK, let me know.

Upvotes: 12

Views: 10477

Answers (1)

harshalb
harshalb

Reputation: 6054

you can do it in the following steps:

  1. capture screen
  2. take that frame in a queue
  3. write it with avassertwriter
  4. and export the video

there is a sample application for understanding these things in the wwdc2010 sample code.

hope this helps.(sample app name : aveditdemo)

Upvotes: 7

Related Questions