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?
Asked
Active
Viewed 570 times
1 Answers
0
Possible, but not easy. A rough outline:
- Start capturing the audio: How do I record audio on iPhone with AVAudioRecorder?
- Capture individual images of the screen as fast as you can: How to capture current view screenshot and reuse in code? (iPhone SDK)
- Later, combine the two into a video. I have no clue how to do this part.