as of now I don't think its possible but I don't know much about the SDK as of now we only have drocrap2 and a few other screenshot apps in the market...maybe email the devs and see if they know
Hey all, I was wondering if anybody knows of a way to possibly to do video screen capture on android? Would have to do it directly from my phone or using the android sdk? I want to do some tutorials on how to use certain apps and instead of simply pointing a video camera at my phone I was just wondering if this was at all possible.![]()
as of now I don't think its possible but I don't know much about the SDK as of now we only have drocrap2 and a few other screenshot apps in the market...maybe email the devs and see if they know
Noobs look here for root info
Need android downloads??
________________________
any more questions?
cbarryg1@gmail.com
Don't get your hopes up or anything
But search the market for Shoot Me!
Then check out more apps from the dev and I think they have something kinda in the ball park but not really.
Email them and ask about it.
Hey PhilMiz, you may use this Android Screen Video Capture Tool contributed by Jason Eggly. This is a great tool for capturing currently displayed screen on your Android as a video for recording program demos to upload to YouTube or problem recreation. You can also us it to
create video tutorials for school or college class, video-based information products you can sell. You can even use it to record new tricks and techniques you discover on your favourite software program, before you forget them.
Good luck!
Last edited by artash; 05-28-2011 at 01:58 PM.
i think you can, good luck.
As far as I know, there is no kinda of this program.
Here is a snippet that works:
m_recorder = new MediaRecorder();
m_recorder.setPreviewDisplay(m_BeMeSurface);
m_recorder.setAudioSource(MediaRecorder.AudioSourc e.MIC);
m_recorder.setVideoSource(MediaRecorder.VideoSourc e.DEFAULT);
m_recorder.setOutputFormat(MediaRecorder.OutputFor mat.THREE_GPP);
m_recorder.setAudioEncoder(MediaRecorder.AudioEnco der.AMR_NB);
m_recorder.setVideoEncoder(MediaRecorder.VideoEnco der.MPEG_4_SP);
m_recorder.setMaxDuration((int) MAX_TIME);
m_recorder.setOnInfoListener(m_BeMeSelf);
m_recorder.setVideoSize(320, 240);
m_recorder.setVideoFrameRate(15);
m_recorder.setOutputFile(m_path);
m_recorder.prepare();
m_recorder.start();
THE most important thing is the surface. You don't have it, so without it it fails.
Another I am exactly answering this question in the following tutorial:
http://integratingstuff.wordpress.co...os-on-android/
Regards,
Naveed
I can capture the screen !! Now I want supported format for youtube It Jobs for freshers website
Last edited by indian_fresher; 06-22-2011 at 12:02 AM.
As far as I know, there is no kinda of this program, most video screen captures apply on computer.
Bookmarks