0

I would like to programmatically produce a video using the microphone on the iPad (for sound) and the screen display (for visual)? Is this possible? How should I proceed?

Andrew
  • 31
  • 1
  • 2

1 Answers1

0

Possible, but not easy. A rough outline:

  1. Start capturing the audio: How do I record audio on iPhone with AVAudioRecorder?
  2. Capture individual images of the screen as fast as you can: How to capture current view screenshot and reuse in code? (iPhone SDK)
  3. Later, combine the two into a video. I have no clue how to do this part.
Community
  • 1
  • 1
igul222
  • 8,557
  • 14
  • 52
  • 60