Android Community
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 14

Thread: Video Screen Capture

  1. #1
    Join Date
    Nov 2009
    Location
    Chicago
    Posts
    96

    Default Video Screen Capture


    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.
    www.PCmuze.com
    My Touch 3G - Cyanogen 2.1 Or Super E 2.1

  2. #2
    Join Date
    Oct 2008
    Location
    Millersville, PA
    Posts
    732

    Default Re: Video Screen Capture

    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



  3. #3
    Join Date
    Mar 2009
    Location
    California
    Posts
    1,967

    Default Re: Video Screen Capture

    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.

  4. #4
    Join Date
    May 2011
    Location
    Los Angeles
    Posts
    11

    Default Re: Video Screen Capture

    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.

  5. #5

    Default Re: Video Screen Capture

    i think you can, good luck.

  6. #6
    Join Date
    Apr 2011
    Posts
    5

    Default Re: Video Screen Capture

    As far as I know, there is no kinda of this program.

  7. #7

    Default Re: Video Screen Capture

    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

  8. #8

    Default Re: Video Screen Capture

    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.

  9. #9
    Join Date
    Apr 2011
    Posts
    5

    Default Re: Video Screen Capture

    As far as I know, there is no kinda of this program, most video screen captures apply on computer.

  10. #10
    Join Date
    Jul 2011
    Posts
    4

    Default Re: Video Screen Capture


    i wanna advice this tool http://www.geovid.com/Screen_VidShot/, try it

Page 1 of 2 1 2 LastLast

Similar Threads

  1. An easier way to capture screenshots
    By daflameking in forum All About Andorid Software
    Replies: 4
    Last Post: 06-21-2011, 07:16 AM
  2. Screen brightness schedule and screen capture
    By SpoonerPS3 in forum Developers Guild
    Replies: 10
    Last Post: 08-14-2009, 02:49 PM
  3. Flash player for G1/ video capture
    By forgotten realms in forum Developers Guild
    Replies: 27
    Last Post: 05-05-2009, 02:29 PM
  4. Video capture,stereo bluetooth and VK coming in January
    By greg1 in forum General HTC Chat
    Replies: 8
    Last Post: 12-21-2008, 12:35 AM
  5. How-to: Capture the screen of an Android device
    By happyandyv in forum General Phone Chat
    Replies: 11
    Last Post: 10-31-2008, 08:40 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •