I need a video of my ipad application. It should be in high resolution and preferably make feeling of natural using of application(so, no cursor, etc). What is the best way to do this and what tools should I use ? I am using Mac. Antoher question is: what is better - to capture video from simulator or from iPad ?
Asked
Active
Viewed 227 times
3 Answers
3
You can use screenflow to record HD movies from your screen (using simulator). Then change the cursor arror for a realistic finger using a little open source program called phoneFinger. Cant remember the URL but just google phonefinger.

Martha
- 1,070
- 1
- 12
- 29
-
phoneFinger is really a nice tool ! Unfortunately screenflow(and other programms I tried) outputs not the quality I wanted. I really doubt that it is possible to make video with HD quality. – user801255 Nov 16 '11 at 13:55
-
Actually playing with screenFlow's configuration, you can record at 720 and up to 60 fps. – Martha Nov 16 '11 at 14:56
0
I use Jing for this purpose. It captures a screen-region of your choice. However, i am not sure how well it performs if you need to capture a video of high framerate apps (e.g. games, videoplayers, etc.).

DucatiNerd
- 467
- 4
- 12
-
As I remember Jing outputs .swf video and I need HD quality video, if it's possible. I need to capture just static pages and video player. – user801255 Nov 16 '11 at 11:49
-
2@user801255 Their page says that the pro version can output h.264. You might want to give it a new try. – JustSid Nov 16 '11 at 12:34
-1
it is similar to Iphone app development.
- Drag the desired video file to resourse folder.
- get the media player framework.
- implementation:
NSURL *name=[NSURL fileURLWithPath:[NSBundle mainBundle] pathForResourse:,ofType:];
MPMoviePlayerVeiwController *name= [[MPMoviePlayerVeiwController alloc]initWithContentURL:url];
[self presentMoviePlayerViewControllerAnimated: name];
name.moviePlayer.movieSourceType = MVMovieSourceTypeFile;
[name.moviePlayer play];
-
this is how to play video in the application and I need to make demo video OF my application – user801255 Nov 16 '11 at 12:28